/* TOPPRODUCTSREVIEW Phase 27 generated CSS bundle. Rebuild with php tools/build_frontend_assets.php */

/* ===== assets/css/style.css ===== */
/* ============================================
   TOPPRODUCTSREVIEW v3.1 — Modern Redesigned Stylesheet
   ============================================ */
:root {
    --primary-green: #18442a;
    --primary-green-light: #1f5a35;
    --primary-green-dark: #0f2e1c;
    --accent-yellow: #e0df0b;
    --accent-yellow-light: #f0ef4a;
    --dark-bg: #18442a;
    --light-text: #ffffff;
    --body-bg: #f5f7f6;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.06);
    --text-primary: #1a1a2e;
    --text-secondary: #555;
    --text-muted: #888;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --container-width: 1200px;
    --header-height: 72px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #f0f2f1;
}

.content-section {
    padding: 5rem 0;
}

.large-text {
    font-size: 1.2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    background: rgba(24, 68, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--light-text);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.main-header.scrolled {
    background: rgba(15, 46, 28, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: center;
}

.main-nav {
    margin-left: auto;
    min-width: 0;
}

.main-nav>ul>li {
    flex: 0 0 auto;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px clamp(9px, 1vw, 16px);
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
    border-radius: 2px;
}

.main-nav ul li a:hover {
    color: var(--light-text);
}

.main-nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 6px;
}

.header-search-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: all var(--transition-fast);
}

.header-search-link:hover,
.header-search-link:focus-visible {
    color: var(--primary-green);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: translateY(-1px);
    outline: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 46, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    margin: 0;
    min-width: 220px;
    border-radius: var(--radius-md);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    font-weight: 400;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(224, 223, 11, 0.1);
    color: var(--accent-yellow);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    border: 0;
    color: inherit;
    background: transparent;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--light-text);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Auth Buttons */
.main-nav .btn-auth {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.main-nav .btn-auth::after {
    display: none;
}

.main-nav .btn-login {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--light-text) !important;
}

.main-nav .btn-login:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow) !important;
    transform: translateY(-2px);
}

.main-nav .btn-signup {
    background: var(--accent-yellow);
    color: var(--primary-green) !important;
    box-shadow: 0 4px 15px rgba(224, 223, 11, 0.3);
}

.main-nav .btn-signup:hover {
    background: #fff;
    color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.main-nav .btn-logout {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff8888 !important;
}

.main-nav .btn-logout:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white !important;
}

.nav-separator {
    margin: 0 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    height: 20px;
    align-self: center;
}

/* Switch to the compact navigation before desktop links become crowded. */
@media (max-width: 1220px) {
    .main-header .container {
        gap: 10px;
    }

    .main-nav {
        margin-left: auto;
    }

    .main-nav>ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 46, 28, 0.99);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .main-nav.active>ul {
        display: flex;
    }

    .main-nav>ul>li {
        width: 100%;
    }

    .main-nav ul li a {
        padding: 12px 24px;
        font-size: .96rem;
        white-space: normal;
    }

    .main-nav ul li a::after {
        display: none;
    }

    .main-nav .nav-separator {
        display: none;
    }

    .main-nav .btn-auth {
        margin: 6px 24px;
        justify-content: center;
        white-space: nowrap;
    }

    .hamburger-menu {
        display: flex;
    }

    .main-nav .dropdown-menu,
    .main-nav .dropdown:hover>.dropdown-menu {
        display: none;
        position: static;
        min-width: 100%;
        margin: 0;
        padding: 3px 0 8px 16px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.14);
        animation: none;
    }

    .main-nav .dropdown.active>.dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li a {
        padding: 10px 28px;
        font-size: .9rem;
    }
}

@media (max-width: 520px) {
    :root {
        --header-height: 66px;
    }

    .main-header .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo img {
        height: 42px;
        max-width: 145px;
    }

    .header-actions {
        gap: 4px;
        margin-left: auto;
    }

    .header-search-link {
        width: 38px;
        height: 38px;
    }

    .hamburger-menu {
        padding: 7px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-slider {
    background: linear-gradient(160deg, var(--primary-green-dark) 0%, var(--primary-green) 40%, var(--primary-green-light) 100%);
    color: var(--light-text);
    padding: 140px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroPulse 6s ease-in-out infinite;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroPulse 8s ease-in-out infinite reverse;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero-slider .container {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.hero-slider h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--light-text);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-slider p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--light-text);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    border-color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   TABS SECTION
   ============================================ */
.tabs-section {
    background: var(--primary-green-dark);
    padding: 0;
    margin-top: -1px;
    position: relative;
    z-index: 10;
}

.tabs-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
    cursor: pointer;
    padding: 1.5rem 2rem;
    transition: all var(--transition-base);
    position: relative;
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.tab-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 3px 3px 0 0;
    transition: transform var(--transition-base);
}

.tab-item:hover {
    background: rgba(224, 223, 11, 0.08);
}

.tab-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.tab-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(224, 223, 11, 0.3);
}

/* ============================================
   HIGHLIGHTS / CAROUSEL
   ============================================ */
.highlights-section {
    padding: 5rem 0;
    background: var(--body-bg);
}

.highlights-section .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.highlights-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin: 0 0 0.3rem 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--primary-green);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
}

.highlights-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.8rem 0 2.5rem 0;
    color: var(--text-primary);
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

#prevBtn {
    left: 5px;
}

#nextBtn {
    right: 5px;
}

.highlight-card {
    background-color: var(--card-bg);
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.highlight-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    color: var(--text-primary);
    font-weight: 700;
}

.card-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0 0 1rem 0;
}

.learn-more-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-base);
    align-self: flex-start;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}

.learn-more-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-2px);
}


/* ============================================
   PRODUCT GRID, STATS, FOOTER, FORMS, PAGES
   ============================================ */
.product-grid,
.project-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-item,
.project-item,
.news-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.product-item:hover,
.project-item:hover,
.news-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-item img,
.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-item h3,
.project-item h3,
.news-item h3 {
    font-size: 1.2rem;
    margin: 1.5rem 1.5rem 0;
    color: var(--text-primary);
}

.product-item a,
.project-item a,
.news-item a {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.product-item a:hover,
.project-item a:hover,
.news-item a:hover {
    color: var(--accent-yellow);
}

.news-item p {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Home Product Portfolio (removing inline styles) */
.product-item-dark {
    background: linear-gradient(135deg, #18442a 0%, #1f5a35 100%);
    color: white;
    display: flex;
    align-items: flex-end;
    min-height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.product-item-dark:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-item-dark h3 {
    color: white;
    width: 100%;
    margin: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    font-size: 1.1rem;
}

/* Stats */
.stat-item {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-item h3 {
    font-size: 2.8rem;
    margin: 0;
    color: var(--primary-green);
    font-weight: 900;
}

.stat-item p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(160deg, var(--primary-green-dark) 0%, var(--primary-green) 40%, var(--primary-green-light) 100%);
    color: var(--light-text);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--light-text);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--card-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(24, 68, 42, 0.1);
}

.form-success {
    color: #166534;
    text-align: center;
    padding: 1rem;
    background: #dcfce7;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid #bbf7d0;
    font-weight: 500;
}

.form-error {
    color: #991b1b;
    text-align: center;
    padding: 1rem;
    background: #fee2e2;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
    font-weight: 500;
}

/* Footer */
.main-footer {
    background: var(--primary-green-dark);
    color: var(--light-text);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    color: var(--accent-yellow);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-yellow);
    transform: translateX(6px);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    align-items: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all var(--transition-base);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(224, 223, 11, 0.25);
}

/* About Page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(24, 68, 42, 0.12);
    display: block;
}

.stats-section {
    background: linear-gradient(135deg, #f0f2f1 0%, #ffffff 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: var(--radius-md);
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.core-values {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
    border-top: 4px solid transparent;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-yellow);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-cta {
    background: linear-gradient(160deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 5rem 0;
    border-radius: var(--radius-md);
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 1rem auto 2rem;
}

.about-cta .btn {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.about-cta .btn:hover {
    background: white;
    color: var(--primary-green);
}

/* Sustainability Page */
.sustainability-intro {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.sustainability-pillars {
    padding: 6rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pillar-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sustainability-impact {
    background: linear-gradient(160deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: var(--radius-md);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-item {
    text-align: center;
    color: white;
    padding: 2rem;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.commitment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 6rem 0;
}

.commitment-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.commitment-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.commitment-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commitment-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-yellow);
    transition: all var(--transition-base);
}

.commitment-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.commitment-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.commitment-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.learn-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-block;
}

.learn-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.sustainability-cta,
.mission-cta,
.vision-cta,
.factory-cta,
.services-cta {
    background: linear-gradient(160deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 5rem 0;
    border-radius: var(--radius-md);
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sustainability-cta::before,
.mission-cta::before,
.vision-cta::before,
.factory-cta::before,
.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content,
.cta-wrapper {
    position: relative;
    z-index: 1;
}

.sustainability-cta h2,
.mission-cta h2,
.vision-cta h2,
.factory-cta h2,
.services-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.sustainability-cta p,
.mission-cta p,
.vision-cta p,
.factory-cta p,
.services-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}


/* ============================================
   MISSION PAGE
   ============================================ */
.mission-hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.mission-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.mission-hero-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.mission-pillars {
    padding: 6rem 0;
}

.pillars-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.mission-pillar {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    border: 1px solid var(--card-border);
}

.mission-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.mission-pillar:hover::before {
    transform: scaleX(1);
}

.mission-pillar:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.pillar-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    opacity: 0.3;
    line-height: 1;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.mission-pillar h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin: 0;
}

.mission-pillar p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    grid-column: 2;
}

.mission-statement {
    background: linear-gradient(135deg, #f0f2f1 0%, #ffffff 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: var(--radius-md);
}

.statement-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.statement-text h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.statement-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.statement-highlight {
    background: var(--card-bg);
    padding: 2.5rem;
    border-left: 5px solid var(--accent-yellow);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.statement-highlight blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-green);
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
}

.core-commitments {
    padding: 6rem 0;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.commitment-box {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.commitment-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.commitment-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
}

.commitment-box h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.commitment-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.mission-vision {
    padding: 6rem 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.vision-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-top: 4px solid var(--accent-yellow);
    border: 1px solid var(--card-border);
    border-top: 4px solid var(--accent-yellow);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vision-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vision-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vision-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.highlight-tag {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   VISION PAGE
   ============================================ */
.vision-hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.vision-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vision-hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.vision-pillars {
    padding: 6rem 0;
}

.pillars-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.vision-pillar-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.vision-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.vision-pillar-card:hover::before {
    transform: scaleX(1);
}

.vision-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar-visual {
    text-align: center;
}

.pillar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(24, 68, 42, 0.2);
}

.pillar-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.pillar-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
}

.pillar-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pillar-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 800;
}

.vision-impact {
    padding: 6rem 0;
}

.impact-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.impact-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.impact-description {
    padding: 2rem;
}

.impact-description p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.impact-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-point {
    display: flex;
    gap: 1rem;
}

.point-number {
    background: var(--accent-yellow);
    color: var(--primary-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.point-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vision-2030,
.vision-2030-factory {
    background: linear-gradient(135deg, #f0f2f1 0%, #ffffff 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: var(--radius-md);
}

.vision-2030-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-2030-content h2,
.vision-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vision-2030-content p,
.vision-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.vision-2030-goals,
.vision-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.goal-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.goal-item h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goal-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.vision-2030-visual,
.vision-highlight {
    text-align: center;
}

.vision-2030-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--accent-yellow);
}

.vision-2030-icon,
.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.vision-2030-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-2030-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vision-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.future-tech {
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vision-statement-banner {
    background: linear-gradient(160deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 5rem 0;
    text-align: center;
    margin: 4rem 0;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.vision-statement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.main-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-subtext {
    font-size: 1rem;
    color: var(--accent-yellow);
    font-weight: 700;
}

/* ============================================
   FACTORY PAGE
   ============================================ */
.factory-intro {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.specialization-section {
    padding: 6rem 0;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.spec-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spec-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.spec-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spec-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.benefit-tag {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.facility-highlights {
    padding: 6rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.manufacturing-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f2f1 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.process-step {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 0.8rem;
    display: block;
}

.step-header h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: bold;
}

.quality-standards {
    padding: 6rem 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.standard-box {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.standard-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.standard-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.standard-box h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.standard-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.capacity-section {
    padding: 6rem 0;
}

.capacity-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.capacity-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.capacity-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.capacity-stat {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.capacity-stat h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.capacity-stat p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.capacity-card-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 3rem;
    border-radius: var(--radius-md);
    color: white;
    text-align: center;
    box-shadow: 0 10px 40px rgba(24, 68, 42, 0.2);
}

.capacity-card-highlight h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
}

.capacity-card-highlight p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: white;
}

.facility-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.detail-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}


/* ============================================
   SERVICES PAGE
   ============================================ */
.services-intro {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.services-grid-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    background: linear-gradient(160deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 800;
}

.service-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f2f1 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-process {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.process-box {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--card-border);
}

.process-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-box h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
}

.industries-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f2f1 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    margin: 4rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border-top: 4px solid transparent;
    border: 1px solid var(--card-border);
    border-top: 4px solid transparent;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-yellow);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-packages {
    padding: 6rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.package-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--accent-yellow);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
    padding: 2rem 2rem 0;
}

.package-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.8rem 2rem;
    font-style: italic;
}

.package-features {
    list-style: none;
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-features li::before {
    content: '\2713 ';
    color: var(--accent-yellow);
    font-weight: 800;
    margin-right: 0.5rem;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-base);
    text-align: center;
    margin: 0 2rem 2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 68, 42, 0.2);
}

.package-card.featured .package-btn {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.package-card.featured .package-btn:hover {
    background: white;
    color: var(--primary-green);
}

/* Download Page */
.styled-list {
    padding: 1rem 0;
}

.styled-list li {
    padding: 0.8rem 0;
}

.download-link {
    color: var(--primary-green);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.download-link:hover {
    color: var(--accent-yellow);
}

.locked-content {
    background: #f0f2f1;
    padding: 2rem;
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
}

.locked-content p {
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   SVG ICON SYSTEM
   ============================================ */
.icon-svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    fill: currentColor;
    transition: all var(--transition-base);
}

.icon-svg-large {
    width: 48px;
    height: 48px;
}

.icon-svg-medium {
    width: 32px;
    height: 32px;
}

.icon-svg-small {
    width: 20px;
    height: 20px;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-leaf {
    color: #10b981;
}

.icon-factory {
    color: #6366f1;
}

.icon-bulb {
    color: #f59e0b;
}

.icon-target {
    color: #ef4444;
}

.icon-energy {
    color: #8b5cf6;
}

.icon-tools {
    color: #06b6d4;
}

.icon-star {
    color: #eab308;
}

.icon-globe {
    color: #3b82f6;
}

.icon-building {
    color: #64748b;
}

.icon-home {
    color: #f97316;
}

.icon-sun {
    color: #fbbf24;
}

.icon-moon {
    color: #60a5fa;
}

.icon-check {
    color: #10b981;
}

.icon-search {
    color: #64748b;
}

/* ============================================
   DARK MODE
   ============================================ */
body.dark-mode {
    --body-bg: #121212;
    --card-bg: #1e1e1e;
    --card-border: rgba(255, 255, 255, 0.06);
    --text-primary: #e8e8e8;
    --text-secondary: #b0b0b0;
    --text-muted: #888;
    --border-color: #333;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    background-color: var(--body-bg);
    color: var(--text-primary);
}

body.dark-mode .main-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .main-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
}

body.dark-mode .bg-light {
    background-color: #1a1a1a;
}

body.dark-mode .tabs-section {
    background-color: #0a0a0a;
}

body.dark-mode .section-title {
    color: var(--accent-yellow);
}

body.dark-mode .page-header {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a2a1f 100%);
}

body.dark-mode .stat-item h3,
body.dark-mode .stat-number {
    color: var(--accent-yellow);
}

body.dark-mode .about-intro-text h2,
body.dark-mode .intro-content h2,
body.dark-mode .mission-hero-content h2,
body.dark-mode .vision-hero-content h2,
body.dark-mode .commitment-content h2,
body.dark-mode .statement-text h2,
body.dark-mode .vision-2030-content h2,
body.dark-mode .vision-content h2 {
    color: var(--accent-yellow);
}

body.dark-mode .value-item h3,
body.dark-mode .pillar-card h3,
body.dark-mode .commitment-card h3,
body.dark-mode .commitment-box h3,
body.dark-mode .vision-card h3,
body.dark-mode .vision-pillar-card h3,
body.dark-mode .tech-card h3,
body.dark-mode .spec-card h3,
body.dark-mode .standard-box h3,
body.dark-mode .service-card h3,
body.dark-mode .benefit-card h3,
body.dark-mode .process-box h3,
body.dark-mode .industry-card h3,
body.dark-mode .package-card h3,
body.dark-mode .goal-item h4,
body.dark-mode .capacity-stat h4,
body.dark-mode .vision-2030-card h3,
body.dark-mode .highlight-card h3,
body.dark-mode .card-content h3,
body.dark-mode .product-item h3 {
    color: var(--accent-yellow);
}

body.dark-mode .statement-highlight {
    background-color: #2a2a2a;
}

body.dark-mode .statement-highlight blockquote {
    color: var(--accent-yellow);
}

body.dark-mode .stats-section,
body.dark-mode .mission-statement,
body.dark-mode .vision-2030,
body.dark-mode .vision-2030-factory,
body.dark-mode .manufacturing-process,
body.dark-mode .service-benefits,
body.dark-mode .industries-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

body.dark-mode .sustainability-intro,
body.dark-mode .factory-intro,
body.dark-mode .services-intro,
body.dark-mode .mission-hero,
body.dark-mode .vision-hero {
    border-bottom-color: #333;
}

body.dark-mode .about-cta,
body.dark-mode .sustainability-cta,
body.dark-mode .mission-cta,
body.dark-mode .vision-cta,
body.dark-mode .factory-cta,
body.dark-mode .services-cta {
    background: linear-gradient(160deg, #1a2a1f 0%, #0d1a11 100%);
}

body.dark-mode .main-footer {
    background-color: #0a0a0a;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #2a2a2a;
    color: var(--text-primary);
    border-color: #444;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(224, 223, 11, 0.1);
}

body.dark-mode .process-step,
body.dark-mode .goal-item,
body.dark-mode .capacity-stat {
    background-color: #2a2a2a;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent-yellow);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 1001;
    transition: all var(--transition-base);
    color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(224, 223, 11, 0.3);
}

.dark-mode-toggle:hover {
    background: var(--primary-green);
    color: var(--accent-yellow);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:active {
    transform: scale(0.95);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-slider p {
        font-size: 1.05rem;
    }

    .hero-slider {
        padding: 120px 20px 100px;
    }

    .stats-grid,
    .values-grid,
    .commitments-grid,
    .standards-grid,
    .tech-grid,
    .benefits-grid,
    .industries-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid,
    .impact-grid,
    .specialization-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-intro,
    .commitment-section,
    .vision-2030-wrapper,
    .capacity-wrapper {
        gap: 2rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .pillars-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    .main-nav>ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 46, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        align-items: stretch;
    }

    .main-nav.active>ul {
        display: flex;
    }

    .main-nav ul li a {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .nav-separator {
        display: none;
    }

    .main-nav .btn-auth {
        margin: 10px 24px;
        justify-content: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        min-width: 100%;
        border-radius: 0;
        padding: 0;
        margin-top: 5px;
    }

    /* Typography & Sections */
    .hero-slider h1 {
        font-size: 2.8rem;
    }

    .hero-slider p {
        font-size: 1.05rem;
    }

    .hero-slider {
        padding: 100px 20px 80px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .highlights-subtitle {
        font-size: 1.8rem;
    }

    .tabs-container {
        flex-direction: column;
        gap: 0;
    }

    .tab-item::after {
        display: none;
    }

    .tab-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
    }

    /* Grids */
    .product-grid,
    .project-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .values-grid,
    .commitments-grid,
    .standards-grid,
    .tech-grid,
    .benefits-grid,
    .industries-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid,
    .impact-grid,
    .specialization-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .pillars-wrapper {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    /* Specific Sections */
    .about-intro,
    .commitment-section,
    .vision-2030-wrapper,
    .capacity-wrapper,
    .statement-wrapper {
        grid-template-columns: 1fr;
    }

    .about-intro-image,
    .commitment-visual,
    .vision-2030-visual,
    .statement-highlight {
        order: -1;
    }

    /* Carousel */
    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .highlight-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }

    /* Padding */
    .content-section,
    .highlights-section,
    .about-intro,
    .sustainability-intro,
    .factory-intro,
    .services-intro,
    .mission-hero,
    .vision-hero {
        padding: 3rem 0;
    }

    .sustainability-cta,
    .mission-cta,
    .vision-cta,
    .factory-cta,
    .services-cta,
    .about-cta {
        padding: 3rem 0;
        margin: 3rem 0;
    }

    .about-intro-text h2,
    .commitment-content h2,
    .vision-2030-content h2,
    .statement-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-slider h1 {
        font-size: 2.2rem;
    }

    .hero-slider p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-nav {
        display: none;
    }

    .highlight-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 240px;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    .learn-more-btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-cta h2,
    .sustainability-cta h2,
    .mission-cta h2,
    .vision-cta h2,
    .factory-cta h2,
    .services-cta h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .stat-number,
    .impact-number,
    .pillar-number {
        font-size: 2.5rem;
    }

    .capacity-card-highlight {
        padding: 1.5rem;
    }
}

/* ============================================
   CATALOGUE STYLES (Appended)
   ============================================ */

/* Hero & Stats */
.cat-hero {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--light-text);
    padding: 6rem 0 4rem;
    text-align: center;
}
.cat-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}
.cat-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cat-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.cat-stat {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
}
.cat-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-yellow);
    line-height: 1.2;
}
.cat-stat span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Bar */
.cat-search-bar {
    background: var(--card-bg);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
    margin-top: -1px;
}
.cat-search-bar form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: var(--body-bg);
    border-radius: var(--radius-pill);
    padding: 5px;
    border: 1px solid var(--border-color);
}
.cat-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}
.cat-search-bar button {
    background: var(--primary-green);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}
.cat-search-bar button:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

/* Categories Grid */
.cat-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.cat-category-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cat-category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transition: var(--transition-base);
}
.cat-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.cat-category-card:hover::before {
    transform: scaleX(1);
}
.cat-icon {
    width: 70px;
    height: 70px;
    background: rgba(24, 68, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}
.cat-category-card:hover .cat-icon {
    background: var(--primary-green);
    color: var(--accent-yellow);
}
.cat-category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.cat-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.cat-arrow {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-base);
}
.cat-category-card:hover .cat-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Category Filters */
.cat-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0 3rem;
}
.cat-filter-chip {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-base);
    cursor: pointer;
}
.cat-filter-chip:hover, .cat-filter-chip.active {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}
.cat-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}
.cat-section-header h2 {
    font-size: 1.8rem;
    margin: 0;
}
.cat-results-count {
    color: var(--text-muted);
    font-weight: 500;
}

/* Product Cards */
.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}
.cat-product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}
.cat-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.cat-product-card-image {
    position: relative;
    height: 240px;
    background: #f9f9f9;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-product-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
    transition: transform 0.4s ease;
}
.cat-product-card:hover .cat-product-card-image img {
    transform: scale(1.08);
}
.cat-product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.cat-product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cat-product-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}
.cat-product-card-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.cat-spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
    margin-top: auto;
}
.cat-spec-pill {
    background: var(--body-bg);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cat-product-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
    transition: var(--transition-base);
}
.cat-product-card:hover .cat-product-card-btn {
    color: var(--accent-yellow);
}

/* Empty State */
.cat-empty {
    text-align: center;
    padding: 5rem 0;
    color: var(--text-muted);
}
.cat-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Product Detail Page */
.cat-product-header {
    background: #fff;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}
.cat-product-header .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.cat-product-gallery {
    position: sticky;
    top: 100px;
}
.cat-main-image {
    position: relative;
    background: #f9f9f9;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
}
.cat-main-caption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1rem;
    color: var(--primary-green);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    padding: 0.45rem 0.75rem;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(24,68,42,0.12);
    border-radius: 6px;
    pointer-events: none;
}
.cat-thumbnail-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 5px;
}
.cat-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    cursor: pointer;
    background: #f9f9f9;
    padding: 5px;
    transition: var(--transition-base);
}
.cat-thumb.active, .cat-thumb:hover {
    border-color: var(--primary-green);
}
.cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
}
.cat-product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.cat-product-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 15px;
    align-items: center;
}
.cat-product-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cat-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}
.cat-spec-item {
    background: var(--body-bg);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
}
.cat-spec-item small {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.cat-spec-item strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}
.cat-product-features ul {
    list-style: none;
    padding: 0;
}
.cat-product-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}
.cat-product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-yellow);
}
.cat-models-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.cat-models-table th {
    background: var(--primary-green);
    color: #fff;
    padding: 12px;
    text-align: left;
}
.cat-models-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.cat-models-table tr:hover td {
    background: rgba(0,0,0,0.02);
}

@media (max-width: 900px) {
    .cat-product-header .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cat-main-image {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .cat-hero h1 { font-size: 2.2rem; }
    .cat-spec-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRODUCT DETAIL — prd-* classes
   ============================================ */

/* Breadcrumb */
.prd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.prd-breadcrumb a {
    color: var(--primary-green);
    font-weight: 500;
    transition: color var(--transition-fast);
}
.prd-breadcrumb a:hover { color: var(--accent-yellow); }
.prd-breadcrumb span { color: var(--text-muted); }

/* Model Codes */
.prd-model-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0.75rem 0;
}
.prd-model-code {
    background: var(--body-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

/* Certifications */
.prd-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0.75rem 0 1rem;
}
.prd-cert {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(24, 68, 42, 0.07);
    color: var(--primary-green);
    border: 1px solid rgba(24, 68, 42, 0.2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.prd-cert i { font-size: 0.7rem; }

/* Content Section */
.prd-section {
    margin-bottom: 1.5rem;
}

/* Catalogue-style product content */
.prd-catalogue-detail {
    background: #fff;
    padding: 3.5rem 0 4.5rem;
}
.prd-catalogue-page {
    max-width: 1180px;
}
.prd-catalogue-block {
    margin-bottom: 3rem;
}
.prd-catalogue-block:last-child {
    margin-bottom: 0;
}
.prd-catalogue-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--primary-green);
    margin-bottom: 1.35rem;
}
.prd-catalogue-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent-yellow);
    margin-top: 0.65rem;
}
.prd-catalogue-text {
    max-width: 920px;
    font-size: 1rem;
}
.prd-catalogue-figure {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.prd-catalogue-figure img {
    width: 100%;
    max-height: 720px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}
.prd-content-image {
    cursor: zoom-in;
}
.prd-image-full {
    max-width: 100%;
}
.prd-image-wide {
    max-width: 1000px;
}
.prd-image-medium {
    max-width: 680px;
}
.prd-catalogue-figure figcaption {
    color: var(--text-muted);
    font-size: 0.86rem;
    text-align: center;
}
.prd-table-scroll {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #d7dadd;
    border-radius: 4px;
    background: #fff;
}
.prd-data-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.prd-data-table th,
.prd-data-table td {
    border: 1px solid #d7dadd;
    padding: 12px 14px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-primary);
}
.prd-data-table th {
    background: #f0f2f3;
    font-weight: 800;
}
.prd-data-table tbody tr:nth-child(even) td {
    background: #fafafa;
}
.prd-data-table td img {
    display: inline-block;
    max-width: 96px;
    max-height: 72px;
    object-fit: contain;
    vertical-align: middle;
}
.prd-block-html {
    max-width: 960px;
    overflow-x: auto;
    color: var(--text-primary);
}
.prd-block-html-framed {
    max-width: 100%;
    overflow: visible;
    /* Full-document HTML blocks already contain their own layout. */
    margin-bottom: 1.25rem;
}
.prd-html-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    /* Its height is set from the srcdoc content in product.php.  A large
       fallback here left an empty area below short HTML blocks. */
    min-height: 0;
    height: 1px;
    border: 0;
    background: #fff;
}
.prd-block-html h1 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.25;
    color: var(--primary-green);
    margin: 0 0 0.35rem;
}
.prd-block-html h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid var(--primary-green);
}
.prd-block-html p {
    margin: 0 0 1rem;
}
.prd-block-html .sub {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.prd-block-html table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    margin: 0 0 1rem;
    font-size: 0.92rem;
    background: #fff;
}
.prd-block-html th,
.prd-block-html td {
    border: 1px solid #d7dadd;
    padding: 9px 12px;
    text-align: left;
    vertical-align: middle;
}
.prd-block-html thead th {
    background: #f0f2f3;
    font-weight: 800;
}
.prd-block-html tbody tr:nth-child(even) td {
    background: #fafafa;
}
.prd-block-html .cat {
    background: #e9ecef !important;
    color: var(--primary-green);
    font-weight: 800;
}
.prd-block-html .uniform {
    color: var(--text-muted);
}
.prd-spec-table-full {
    border: 1px solid #d7dadd;
    max-width: 960px;
}
.prd-spec-table-full .prd-spec-label,
.prd-spec-table-full .prd-spec-value {
    padding: 12px 14px;
}
.prd-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 22px;
}
.prd-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}
.prd-color-swatch {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.prd-color-swatch span {
    width: 58px;
    height: 58px;
    border: 1px solid #d4d7d9;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}
.prd-color-swatch small {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}
.prd-catalogue-divider {
    margin: 3rem 0;
}

/* Section titles */
.prd-section-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-color);
}

/* Text content */
.prd-text-content {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.prd-text-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.25rem auto;
    border-radius: 8px;
}
.prd-text-content img.prd-image-float-left,
.prd-text-content img.prd-image-float-right {
    width: auto;
    max-width: 100%;
    margin-top: 0.35rem;
    margin-bottom: 1rem;
}
.prd-text-content img.prd-image-float-left {
    float: left;
    margin-right: 1.5rem;
    margin-left: 0;
}
.prd-text-content img.prd-image-float-right {
    float: right;
    margin-left: 1.5rem;
    margin-right: 0;
}
.prd-text-content img.prd-image-side-by-side {
    display: inline-block;
    width: calc(50% - 10px);
    max-width: 320px;
    margin: 0.4rem 0.5rem 0.4rem 0;
    vertical-align: middle;
}
.prd-text-content::after {
    content: '';
    display: block;
    clear: both;
}
.prd-text-content .ql-direction-rtl {
    direction: rtl;
    text-align: right;
}
.prd-text-content .ql-align-left { text-align: left; }
.prd-text-content .ql-align-center { text-align: center; }
.prd-text-content .ql-align-right { text-align: right; }
.prd-text-content .ql-align-justify { text-align: justify; }
.prd-text-content .ql-size-small { font-size: 0.82em; }
.prd-text-content .ql-size-large { font-size: 1.35em; }
.prd-text-content .ql-size-huge { font-size: 1.8em; }
.prd-text-content ul,
.prd-text-content ol {
    margin: 0.75rem 0 0.75rem 1.35rem;
    padding-left: 1.1rem;
}
.prd-text-content ul {
    list-style: disc;
}
.prd-text-content ol {
    list-style: decimal;
}
.prd-text-content li {
    margin: 0.35rem 0;
    padding-left: 0.25rem;
}
.prd-text-content ol > li[data-list="bullet"] {
    list-style-type: disc;
}
.prd-text-content ol > li[data-list="ordered"] {
    list-style-type: decimal;
}
@media (max-width: 640px) {
    .prd-text-content img.prd-image-float-left,
    .prd-text-content img.prd-image-float-right,
    .prd-text-content img.prd-image-side-by-side {
        float: none;
        display: block;
        width: auto;
        max-width: 100%;
        margin: 1.25rem auto;
    }
}

/* Specifications table */
.prd-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.prd-spec-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}
.prd-spec-table tr:last-child { border-bottom: none; }
.prd-spec-table tr:hover { background: rgba(24, 68, 42, 0.03); }
.prd-spec-label {
    padding: 9px 12px 9px 0;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    width: 45%;
}
.prd-spec-label i {
    color: var(--primary-green);
    margin-right: 6px;
    width: 14px;
    text-align: center;
}
.prd-spec-value {
    padding: 9px 0;
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Features list */
.prd-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.prd-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.prd-features li i {
    color: var(--primary-green);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* Divider */
.prd-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

/* CTA Actions */
.prd-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.prd-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 14px 32px;
}

/* Related Products section */
.prd-related {
    background: var(--body-bg);
    padding: 3rem 0;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
}

/* Prev/Next navigation bar */
.prd-nav-bar {
    background: var(--body-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 0;
}
.prd-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.prd-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--primary-green);
    font-weight: 600;
    max-width: 45%;
    overflow: hidden;
}
.prd-nav-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.prd-nav-link i { flex-shrink: 0; }
.prd-nav-link:hover { color: var(--accent-yellow); }

/* Related products header */
.prd-related-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0;
}
.prd-related-title span {
    color: var(--primary-green);
}

/* Related grid — 4 cols desktop, adapts on mobile */
.prd-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ============================================
   PRODUCT DETAIL — RESPONSIVE (Mobile-First)
   ============================================ */

/* Tablet / small desktop */
@media (max-width: 900px) {
    .cat-product-header {
        padding: 2rem 0;
    }
    .cat-product-header .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cat-main-image {
        height: 320px;
    }
    .cat-product-gallery {
        position: static;
    }
    .cat-product-info h1 {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    /* Product detail wrapper */
    .cat-product-header {
        padding: 1.25rem 0 2rem;
    }
    .cat-product-header .container {
        gap: 1.25rem;
        padding: 0 16px;
    }

    /* Gallery */
    .cat-main-image {
        height: 240px;
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-bottom: 0.75rem;
    }
    .cat-main-caption {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.6rem;
        font-size: 0.78rem;
        padding: 0.35rem 0.5rem;
    }
    .cat-thumbnail-strip {
        gap: 8px;
        padding-bottom: 4px;
    }
    .cat-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    /* Info section */
    .cat-product-info {
        padding: 0;
    }
    .cat-product-info h1 {
        font-size: 1.45rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    /* Breadcrumb */
    .prd-breadcrumb {
        font-size: 0.78rem;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 0.5rem;
    }

    /* Model codes */
    .prd-model-codes {
        gap: 5px;
        margin: 0.5rem 0;
    }
    .prd-model-code {
        font-size: 0.7rem;
        padding: 2px 8px;
    }

    /* Certifications */
    .prd-certs {
        gap: 6px;
        margin: 0.5rem 0 0.75rem;
    }
    .prd-cert {
        font-size: 0.72rem;
        padding: 3px 8px;
    }

    /* Content sections */
    .prd-section {
        margin-bottom: 1.25rem;
    }
    .prd-section-title {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        margin-bottom: 0.6rem;
        padding-bottom: 0.35rem;
    }
    .prd-text-content {
        font-size: 0.88rem;
        line-height: 1.75;
    }
    .prd-catalogue-detail {
        padding: 2rem 0 2.75rem;
    }
    .prd-catalogue-detail .container {
        padding: 0 16px;
    }
    .prd-catalogue-block {
        margin-bottom: 2rem;
    }
    .prd-catalogue-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .prd-catalogue-figure img {
        max-height: 420px;
        border-radius: 6px;
    }
    .prd-data-table {
        min-width: 640px;
        font-size: 0.8rem;
    }
    .prd-data-table th,
    .prd-data-table td {
        padding: 9px 10px;
    }
    .prd-features-grid {
        grid-template-columns: 1fr;
    }
    .prd-color-swatches {
        gap: 18px;
    }
    .prd-color-swatch span {
        width: 48px;
        height: 48px;
    }

    /* Spec table — keep 2 columns but scale down */
    .prd-spec-table {
        font-size: 0.82rem;
    }
    .prd-spec-label {
        width: 48%;
        padding: 8px 10px 8px 0;
        font-size: 0.8rem;
        white-space: normal;
        word-break: break-word;
    }
    .prd-spec-label i {
        font-size: 0.72rem;
        margin-right: 5px;
        width: 12px;
    }
    .prd-spec-value {
        padding: 8px 0;
        font-size: 0.82rem;
        font-weight: 600;
    }

    /* Features list */
    .prd-features li {
        font-size: 0.86rem;
        gap: 7px;
    }
    .prd-features li i {
        font-size: 0.75rem;
        margin-top: 2px;
    }

    /* CTA area */
    .prd-actions {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    .prd-btn-quote {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 15px 24px;
        border-radius: var(--radius-md);
    }

    /* Prev/Next nav */
    .prd-nav-bar {
        padding: 0.5rem 0;
    }
    .prd-nav-link {
        font-size: 0.75rem;
        max-width: 44%;
        gap: 4px;
    }

    /* Related products section */
    .prd-related {
        padding: 2rem 0;
    }
    .prd-related .container {
        padding: 0 16px;
    }
    .prd-related-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .prd-related .cat-product-grid,
    .prd-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        margin-bottom: 0;
    }
    .prd-related .cat-product-card-image {
        height: 140px;
        padding: 0.75rem;
    }
    .prd-related .cat-product-card-body {
        padding: 0.85rem;
    }
    .prd-related .cat-product-card-body h3 {
        font-size: 0.82rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    .prd-related .cat-product-card-btn {
        font-size: 0.75rem;
        padding-top: 0.6rem;
    }
    .prd-related .cat-product-card-btn i {
        font-size: 0.7rem;
    }
}

/* ===== assets/css/modern.css ===== */
/* TOPPRODUCTSREVIEW 2026 visual system — shared public experience */
:root {
    --scroll-progress: 0%;
    --primary-green: #123f30;
    --primary-green-light: #1f674e;
    --primary-green-dark: #071d16;
    --accent-yellow: #d9e426;
    --accent-yellow-light: #eef56c;
    --ink: #10231d;
    --ink-soft: #40564d;
    --surface: #ffffff;
    --surface-muted: #f3f5ef;
    --surface-warm: #f7f4ec;
    --line: #dfe5df;
    --light-text: #ffffff;
    --body-bg: #f7f8f4;
    --card-bg: #ffffff;
    --card-border: rgba(16, 35, 29, .09);
    --text-primary: #10231d;
    --text-secondary: #52645d;
    --text-muted: #5d7168;
    --border-color: #dfe5df;
    --shadow-sm: 0 8px 26px rgba(7, 29, 22, .06);
    --shadow-md: 0 18px 50px rgba(7, 29, 22, .10);
    --shadow-lg: 0 28px 80px rgba(7, 29, 22, .16);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --radius-pill: 999px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Manrope', 'Inter', sans-serif;
    --container-width: 1280px;
    --header-height: 84px;
}

html {
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    background: var(--body-bg);
    color: var(--ink);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

main {
    min-height: 55vh;
}

::selection {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(217, 228, 38, .7);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 48px, var(--container-width));
    max-width: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -.035em;
    color: var(--ink);
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-green-light);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent-yellow);
}

.eyebrow-light {
    color: rgba(255, 255, 255, .68);
}

.section-title {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.05em;
    text-transform: none;
}

.section-subtitle {
    color: var(--ink-soft);
    font-size: 1rem;
}

.content-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

/* Header */
.main-header {
    height: var(--header-height);
    padding: 0;
    color: #fff;
    background: rgba(7, 29, 22, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.main-header.scrolled {
    background: rgba(7, 29, 22, .985);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
}

.main-header::after {
    content: '';
    position: absolute;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 4;
    width: var(--scroll-progress);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-light));
    box-shadow: 0 0 10px rgba(217, 228, 38, .35);
    pointer-events: none;
}

.header-shell {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    width: 126px;
    height: 58px;
    overflow: hidden;
}

.logo img {
    width: 126px;
    height: auto;
    transform: none;
}

.logo:hover img {
    transform: none;
    opacity: .82;
}

.main-nav {
    margin: 0 auto;
}

.main-nav > ul {
    gap: 4px;
}

.main-nav ul li a {
    padding: 14px 13px;
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
    font-weight: 650;
    letter-spacing: -.005em;
}

.main-nav > ul > li > a::after {
    right: 13px;
    bottom: 7px;
    left: 13px;
    height: 1px;
    background: var(--accent-yellow);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
}

.main-nav ul li a.active::after {
    transform: scaleX(1);
}

.nav-chevron {
    margin-left: 4px;
    font-size: .65rem;
    transition: transform .25s ease;
}

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

.dropdown-menu {
    top: calc(100% - 5px);
    min-width: 248px;
    padding: 10px;
    background: rgba(10, 37, 28, .99);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.product-dropdown {
    min-width: 282px;
    max-height: min(70vh, 560px);
    overflow-y: auto;
}

.dropdown-menu li a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .74);
    font-size: .84rem;
}

.dropdown-menu li a i:first-child {
    width: 17px;
    color: var(--accent-yellow);
    text-align: center;
}

.dropdown-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.dropdown-menu .dropdown-featured {
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.dropdown-menu .dropdown-featured a {
    color: var(--accent-yellow);
}

.dropdown-menu .dropdown-featured a i:last-child {
    margin-left: auto;
}

.header-actions {
    gap: 8px;
    margin: 0;
}

.header-icon-link,
.header-search-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, .82);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.header-icon-link:hover {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.header-cta {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: var(--radius-pill);
    font-size: .82rem;
    font-weight: 800;
}

.header-cta:hover {
    background: #fff;
}

.mobile-nav-actions {
    display: none;
}

/* Buttons and links */
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.btn,
.btn-primary {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    box-shadow: none;
}

.btn:hover,
.btn-primary:hover {
    color: var(--primary-green-dark);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .17);
    transform: translateY(-2px);
}

.btn-ghost,
.btn-secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, .38);
}

.btn-ghost:hover,
.btn-secondary:hover {
    color: var(--primary-green-dark);
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    color: var(--primary-green);
    font-size: .88rem;
    font-weight: 800;
}

.text-link i {
    transition: transform .25s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.btn i,
.btn-primary i,
.btn-secondary i,
.btn-ghost i,
.header-cta i,
.footer-cta i {
    transition: transform .25s ease;
}

.btn:hover i,
.btn-primary:hover i,
.btn-secondary:hover i,
.btn-ghost:hover i,
.header-cta:hover i,
.footer-cta:hover i {
    transform: translateX(4px);
}

.text-link-light {
    color: var(--accent-yellow);
}

/* Homepage hero */
.home-hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    padding: clamp(5rem, 9vw, 8.5rem) 0 5rem;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 42%, rgba(217, 228, 38, .14), transparent 27%),
        linear-gradient(126deg, #071d16 0%, #0a2d22 57%, #123f30 100%);
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 40%, #000);
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.home-hero-copy {
    max-width: 715px;
}

.hero-kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .7);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-kicker span {
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(217, 228, 38, .12);
}

.home-hero h1 {
    max-width: 780px;
    margin: 0 0 25px;
    color: #fff;
    font-size: clamp(3.3rem, 6.3vw, 6.6rem);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.068em;
    text-wrap: balance;
}

.home-hero h1 em {
    color: var(--accent-yellow);
    font-style: normal;
}

.home-hero-copy > p {
    max-width: 630px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.4vw, 1.17rem);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-proof div {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    font-weight: 600;
}

.hero-proof i {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 50%;
    font-size: .6rem;
}

.hero-visual {
    position: relative;
    min-height: 570px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 7%;
    right: -15%;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 17%;
    right: -5%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(217, 228, 38, .16);
    border-radius: 50%;
}

.luminaire-stage {
    position: absolute;
    inset: 0;
}

.luminaire-cable {
    position: absolute;
    top: -25%;
    left: 50%;
    width: 2px;
    height: 55%;
    background: linear-gradient(rgba(255, 255, 255, .05), rgba(255, 255, 255, .35));
}

.luminaire-head {
    position: absolute;
    top: 25%;
    left: 50%;
    z-index: 3;
    width: 245px;
    height: 72px;
    background: linear-gradient(180deg, #dce1dc, #66736d 40%, #1e2925 44%);
    border-radius: 50%;
    box-shadow: 0 22px 35px rgba(0, 0, 0, .34);
    transform: translateX(-50%);
}

.luminaire-head::before {
    content: '';
    position: absolute;
    top: 37px;
    left: 14px;
    right: 14px;
    height: 30px;
    background: radial-gradient(ellipse, #fff 0%, #f3f7c5 45%, #d9e426 100%);
    border-radius: 50%;
    box-shadow: 0 12px 70px rgba(217, 228, 38, .74);
}

.luminaire-head span {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 46px;
    height: 21px;
    background: #394640;
    border-radius: 45% 45% 10% 10%;
    transform: translateX(-50%);
}

.light-beam {
    position: absolute;
    top: 33%;
    left: 50%;
    z-index: 1;
    width: 420px;
    height: 320px;
    opacity: .43;
    background: linear-gradient(180deg, rgba(235, 242, 126, .6), rgba(235, 242, 126, .06) 75%, transparent);
    clip-path: polygon(32% 0, 68% 0, 100% 100%, 0 100%);
    filter: blur(9px);
    transform: translateX(-50%);
}

.light-pool {
    position: absolute;
    bottom: 6%;
    left: 50%;
    width: 440px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(238, 245, 108, .46), rgba(217, 228, 38, .08) 52%, transparent 72%);
    border-radius: 50%;
    filter: blur(8px);
    transform: translateX(-50%);
}

.hero-spec {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: 38px auto;
    gap: 0 11px;
    align-items: center;
    min-width: 205px;
    padding: 14px 16px;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.hero-spec i {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 10px;
}

.hero-spec strong {
    font-size: .78rem;
}

.hero-spec small {
    color: rgba(255, 255, 255, .55);
    font-size: .65rem;
}

.hero-spec-one {
    top: 21%;
    right: -3%;
}

.hero-spec-two {
    bottom: 14%;
    left: -2%;
}

.hero-scroll {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, .45);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* Calm, typography-led hero — intentionally free of decorative illustrations. */
.home-hero {
    min-height: 0;
    padding: clamp(3.75rem, 5vw, 5.5rem) 0 clamp(3.5rem, 4vw, 4.5rem);
    background: linear-gradient(112deg, #071d16 0%, #0b3024 58%, #174c39 100%);
}

.home-hero::before {
    display: none;
}

.home-hero-grid {
    display: block;
}

.home-hero-copy {
    max-width: 850px;
}

.hero-kicker {
    margin-bottom: 24px;
    padding-left: 13px;
    border-left: 2px solid var(--accent-yellow);
    color: rgba(255, 255, 255, .65);
}

.hero-kicker span {
    display: none;
}

.home-hero h1 {
    max-width: 780px;
    font-size: clamp(3.45rem, 6.4vw, 6.8rem);
}

.hero-proof {
    gap: 0;
    margin-top: 32px;
}

.hero-proof span {
    padding: 0 18px;
    color: rgba(255, 255, 255, .57);
    font-size: .76rem;
    font-weight: 650;
}

.hero-proof span:first-child {
    padding-left: 0;
}

.hero-proof span + span {
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.hero-editorial {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 0 0 0 32px;
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.hero-editorial-label {
    margin-bottom: 18px;
    color: var(--accent-yellow);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-editorial p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3.5vw, 4.1rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.065em;
}

.hero-editorial strong {
    color: #fff;
}

.hero-editorial small {
    display: block;
    max-width: 190px;
    margin-top: 26px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .45);
    font-size: .72rem;
    line-height: 1.55;
}

.capability-strip {
    color: #fff;
    background: var(--primary-green);
}

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

.capability-strip-grid > div {
    display: flex;
    gap: 15px;
    align-items: center;
    min-height: 88px;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.capability-strip-grid > div:last-child {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.capability-strip span {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 800;
}

.capability-strip p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: .8rem;
    font-weight: 700;
}

.home-section {
    padding: clamp(3.75rem, 6vw, 6.25rem) 0;
}

.section-heading {
    margin-bottom: clamp(2rem, 3.5vw, 3.25rem);
}

.section-heading h2,
.partnership-copy h2,
.sustainability-grid-home h2,
.home-cta h2 {
    max-width: 760px;
    margin: 13px 0 0;
    font-size: clamp(2.35rem, 4.6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -.06em;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.15fr .65fr;
    gap: 4rem;
    align-items: end;
}

.split-heading > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .98rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 292px;
    padding: 25px;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.solution-card:hover {
    color: var(--ink);
    border-color: rgba(31, 103, 78, .3);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.solution-icon,
.value-icon-modern {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    background: var(--surface-muted);
    border: 1px solid #e3e8df;
    border-radius: 14px;
    font-size: 1.05rem;
}

.solution-card-copy {
    margin-top: 3rem;
}

.solution-card-copy > span {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.solution-card h3 {
    margin: 0 0 11px;
    font-size: 1.5rem;
    letter-spacing: -.035em;
}

.solution-card p {
    margin: 0 0 22px;
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.7;
}

.solution-card b {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--primary-green);
    font-size: .84rem;
}

.solution-card b i {
    transition: transform .25s ease;
}

.solution-card:hover b i {
    transform: translateX(5px);
}

.solution-card-featured {
    color: var(--ink);
    background: var(--surface);
    border-color: var(--line);
    box-shadow: inset 4px 0 0 var(--primary-green);
}

.solution-card-featured:hover {
    color: var(--ink);
    border-color: rgba(31, 103, 78, .3);
}

.solution-card-featured .solution-icon {
    position: relative;
    z-index: 2;
    color: var(--primary-green);
    background: var(--surface-muted);
    border-color: #e3e8df;
}

.solution-card-featured .solution-card-copy {
    position: relative;
    z-index: 2;
}

.solution-card-featured h3,
.solution-card-featured p,
.solution-card-featured b {
    color: var(--ink);
}

.solution-card-featured p,
.solution-card-featured .solution-card-copy > span {
    color: var(--ink-soft);
}

.card-glow {
    display: none;
}

.solution-card-link {
    justify-content: center;
    color: var(--ink);
    background: var(--surface-muted);
    border-color: var(--line);
    box-shadow: inset 4px 0 0 var(--accent-yellow);
}

.solution-card-link h3,
.solution-card-link b {
    color: var(--primary-green-dark);
}

.solution-card-link .solution-card-copy > span {
    color: var(--text-muted);
}

/* Original TOPPRODUCTSREVIEW image library */
.home-insights {
    padding-top: 0;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 430px;
    gap: 16px;
}

.insight-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    background: var(--primary-green-dark);
    border-radius: 22px;
    isolation: isolate;
}

.insight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.insight-card::after {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(4, 18, 13, .84) 100%);
}

.insight-card:hover img {
    transform: scale(1.045);
}

.insight-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.insight-overlay > span {
    display: block;
    margin-bottom: 9px;
    color: var(--accent-yellow);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.insight-overlay h3 {
    max-width: 470px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.45rem, 2.8vw, 2.3rem);
    line-height: 1.08;
}

.insight-overlay b {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, .72);
    font-size: .76rem;
}

.insight-overlay b i {
    transition: transform .25s ease;
}

.insight-card:hover .insight-overlay b i {
    transform: translateX(5px);
}

.home-partnership {
    color: #fff;
    background: var(--primary-green-dark);
}

.partnership-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(4rem, 8vw, 8rem);
    align-items: center;
}

.partnership-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #0d2c22;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 28px;
}

.plan-grid {
    position: absolute;
    inset: 0;
    opacity: .3;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.plan-line {
    position: absolute;
    height: 3px;
    background: var(--accent-yellow);
    box-shadow: 0 0 18px rgba(217, 228, 38, .45);
    transform-origin: left;
}

.plan-line-one {
    top: 43%;
    left: 20%;
    width: 64%;
    transform: rotate(17deg);
}

.plan-line-two {
    top: 63%;
    left: 17%;
    width: 62%;
    transform: rotate(-21deg);
}

.plan-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border: 10px solid rgba(217, 228, 38, .18);
    background-clip: padding-box;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(217, 228, 38, .35);
}

.plan-node-one { top: 31%; left: 14%; }
.plan-node-two { top: 49%; right: 11%; }
.plan-node-three { bottom: 20%; left: 14%; }

.plan-label {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.plan-label span {
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-label strong {
    font-size: .78rem;
}

.partnership-copy h2,
.home-cta h2 {
    color: #fff;
}

.partnership-copy > p {
    max-width: 640px;
    margin: 25px 0 30px;
    color: rgba(255, 255, 255, .62);
}

.process-list {
    margin: 0 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.process-list > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.process-list > div > span {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 800;
}

.process-list h3 {
    margin: 0 0 3px;
    color: #fff;
    font-size: .95rem;
}

.process-list p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
}

/* Partnership: typography-led editorial panel */
.partnership-editorial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 510px;
    padding: clamp(2rem, 5vw, 4.5rem);
    color: rgba(255, 255, 255, .44);
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.partnership-editorial span,
.partnership-editorial strong {
    font-family: var(--font-heading);
    font-size: clamp(3.1rem, 6.1vw, 6.2rem);
    font-weight: 600;
    line-height: .88;
    letter-spacing: -.075em;
}

.partnership-editorial strong {
    color: var(--accent-yellow);
    font-weight: 700;
}

.partnership-editorial small {
    max-width: 180px;
    margin-top: 3.25rem;
    padding-top: 1rem;
    color: rgba(255, 255, 255, .55);
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.centered-heading {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading .eyebrow::before {
    display: none;
}

.centered-heading h2 {
    margin-right: auto;
    margin-left: auto;
}

.centered-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--ink-soft);
}

.value-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-grid-home article {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.value-grid-home h3 {
    margin: 38px 0 10px;
    font-size: 1.1rem;
}

.value-grid-home p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .82rem;
}

.sustainability-feature {
    background: var(--surface-warm);
}

.sustainability-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 8vw;
    align-items: end;
}

.sustainability-grid-home h2 {
    margin-top: 13px;
}

.sustainability-grid-home > div:nth-child(2) > p {
    margin: 0 0 24px;
    color: var(--ink-soft);
}

.sustainability-metric {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 17px 20px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(16, 35, 29, .08);
    border-radius: 16px;
    font-size: .82rem;
    font-weight: 800;
}

.sustainability-metric i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 12px;
}

.sustainability-grid-home .sustainability-metric:last-child {
    grid-column: auto;
}

.home-cta {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 8% 0%, rgba(217, 228, 38, .13), transparent 25%),
        var(--primary-green);
}

.home-cta-inner {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 6vw;
    align-items: center;
}

.home-cta-inner > div:last-child > p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .67);
}

/* Shared inner pages */
.page-header {
    position: relative;
    padding: clamp(5.5rem, 10vw, 8.5rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 30%, rgba(217, 228, 38, .12), transparent 24%),
        linear-gradient(125deg, var(--primary-green-dark), var(--primary-green));
}

.page-header::before {
    inset: 0;
    width: auto;
    height: auto;
    opacity: .32;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 56px 56px;
    border-radius: 0;
}

.page-header h1 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 1;
    letter-spacing: -.065em;
    text-transform: none;
}

.page-subtitle {
    color: rgba(255, 255, 255, .65);
    font-size: clamp(.98rem, 1.8vw, 1.15rem);
}

.about-intro,
.mission-hero,
.vision-hero,
.sustainability-intro,
.services-intro {
    gap: clamp(2.5rem, 6vw, 6rem);
}

.about-intro h2,
.mission-hero h2,
.vision-hero h2,
.sustainability-intro h2,
.services-intro h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.about-intro-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    overflow: hidden;
    background: var(--primary-green-dark);
    border-radius: 26px;
}

.about-intro-image::before {
    display: none;
}

.about-intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.stats-section {
    margin: clamp(3rem, 7vw, 6rem) 0;
}

.stat-box,
.value-item,
.mission-pillar,
.commitment-box,
.vision-pillar-card,
.impact-item,
.tech-card,
.benefit-card,
.service-card,
.industry-card,
.spec-card,
.highlight-card,
.standard-box,
.capacity-stat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: none;
}

.stat-number,
.stat-item h3 {
    color: var(--primary-green);
}

/* Services: focused benefit cards with meaningful icons */
.service-benefits {
    padding: clamp(3.75rem, 6vw, 6.25rem) 0;
}

.service-benefits > .section-title {
    max-width: 720px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.service-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-benefits .benefit-card {
    min-height: 235px;
    padding: 25px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: none;
    text-align: left;
}

.service-benefits .benefit-card:hover {
    border-color: rgba(31, 103, 78, .3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.service-benefits .benefit-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 1.6rem;
    color: var(--primary-green);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 1.18rem;
}

.service-benefits .benefit-card h3 {
    margin: 0 0 .65rem;
    color: var(--ink);
    font-size: 1.14rem;
    letter-spacing: -.035em;
}

.service-benefits .benefit-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.6;
}

/* Sustainability impact: concise editorial value panel */
.sustainability-page .sustainability-impact {
    margin: clamp(3.5rem, 6vw, 5.5rem) 0;
    padding: clamp(2.25rem, 4.5vw, 4.5rem);
    color: #fff;
    background: linear-gradient(118deg, #0a2c21, #17553e);
    border: 0;
    border-radius: 22px;
}

.sustainability-page .impact-intro {
    display: grid;
    grid-template-columns: minmax(160px, .42fr) 1fr;
    gap: 2rem;
    align-items: end;
    max-width: 850px;
    margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.sustainability-page .impact-intro span {
    padding-bottom: .55rem;
    color: var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.25;
    text-transform: uppercase;
}

.sustainability-page .impact-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.sustainability-page .impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.sustainability-page .impact-item {
    min-height: 0;
    padding: 0 clamp(1.25rem, 2.3vw, 2.5rem);
    color: #fff;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .22);
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

.sustainability-page .impact-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.sustainability-page .impact-number {
    margin: 0 0 .85rem;
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    font-weight: 750;
    line-height: 1;
    letter-spacing: -.05em;
}

.sustainability-page .impact-item p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
    line-height: 1.6;
}

.value-icon,
.pillar-icon,
.pillar-circle,
.impact-icon,
.tech-icon,
.service-icon,
.industry-icon,
.spec-icon,
.highlight-icon,
.standard-icon,
.stat-icon,
.commitment-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: var(--primary-green);
    background: var(--surface-muted);
    border: 1px solid #e2e8df;
    border-radius: 16px;
    font-size: 1.35rem;
}

.value-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.value-icon-image {
    width: 78px;
    height: 78px;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.value-icon-image::before {
    display: none !important;
    content: none !important;
}

.value-item:nth-child(1) .value-icon::before,
.value-item:nth-child(2) .value-icon::before,
.value-item:nth-child(3) .value-icon::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.value-item:nth-child(1) .value-icon::before { content: '\f0eb'; }
.value-item:nth-child(2) .value-icon::before { content: '\f4c4'; }
.value-item:nth-child(3) .value-icon::before { content: '\f3c5'; }

.icon-svg {
    width: 1.35em !important;
    height: 1.35em !important;
    color: currentColor;
}

.vision-2030-icon img,
img.media-fallback {
    object-fit: contain !important;
    padding: 22px;
    background: var(--surface-muted);
}

.form-group label {
    color: var(--ink);
    font-size: .82rem;
}

.form-group input,
.form-group textarea,
.form-group select,
.contact-form input,
.contact-form textarea,
.contact-form select {
    min-height: 52px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.form-group textarea {
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form {
    padding: clamp(1.3rem, 4vw, 2.5rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.vision-2030-icon {
    display: grid;
    place-items: center;
    min-height: 210px;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
}

.vision-2030-icon img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: contain;
    padding: 0;
}

.downloads-intro {
    max-width: 760px;
    margin-bottom: 44px;
}

.downloads-intro h2 {
    margin: 14px 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
}

.downloads-intro p {
    color: var(--ink-soft);
}

.download-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.download-card-modern {
    padding: clamp(1.7rem, 4vw, 3rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.download-card-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 42px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 16px;
}

.download-card-modern > span {
    color: var(--text-muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.download-card-modern h3 {
    margin: 8px 0 12px;
    font-size: 1.55rem;
}

.download-card-modern p {
    margin-bottom: 25px;
    color: var(--ink-soft);
    font-size: .88rem;
}

.download-card-modern a {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--primary-green);
    font-size: .82rem;
    font-weight: 800;
}

.download-account-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    margin-top: 18px;
    padding: 26px;
    color: #fff;
    background: var(--primary-green-dark);
    border-radius: 20px;
}

.download-account-note > div:first-child {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 13px;
}

.download-account-note h3 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 1rem;
}

.download-account-note p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: .78rem;
}

.download-auth-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-green-light);
    box-shadow: 0 0 0 4px rgba(31, 103, 78, .11);
}

/* Catalogue harmonisation */
.cat-hero {
    background:
        radial-gradient(circle at 75% 20%, rgba(217, 228, 38, .14), transparent 25%),
        linear-gradient(125deg, var(--primary-green-dark), var(--primary-green));
}

.cat-hero h1 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    letter-spacing: -.06em;
}

.cat-category-card,
.cat-product-card,
.prd-main-card {
    border-color: var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.cat-category-card:hover,
.cat-product-card:hover {
    border-color: rgba(31, 103, 78, .3);
    box-shadow: var(--shadow-md);
}

.cat-icon {
    display: grid;
    place-items: center;
    color: var(--primary-green);
    background: var(--surface-muted);
    border-radius: 15px;
}

/* Footer */
.main-footer {
    padding: 0;
    color: #fff;
    background: #061711;
}

.footer-topline {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
    padding: 62px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-topline h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.footer-cta {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 22px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: var(--radius-pill);
    font-size: .84rem;
    font-weight: 800;
}

.footer-cta:hover {
    color: var(--primary-green-dark);
    background: #fff;
}

.footer-grid {
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    margin: 0;
    padding: 60px 0;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: block;
    width: 150px;
    height: 70px;
    margin-bottom: 15px;
    overflow: hidden;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .5);
    font-size: .82rem;
}

.footer-email {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    font-weight: 700;
}

.footer-email i {
    color: var(--accent-yellow);
}

.footer-column h4 {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .36);
    font-size: .68rem;
    letter-spacing: .14em;
}

.footer-column ul li {
    margin: 0 0 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, .68);
    font-size: .8rem;
}

.footer-column a:hover {
    color: var(--accent-yellow);
    transform: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .38);
    font-size: .7rem;
}

.footer-signature {
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1180px) {
    :root { --header-height: 76px; }

    .main-header,
    .main-header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .main-nav > ul {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        display: none;
        align-content: start;
        padding: 18px max(24px, calc((100vw - var(--container-width)) / 2));
        overflow-y: auto;
        background: #071d16;
        box-shadow: none;
    }

    .main-nav.active > ul {
        display: block;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .main-nav ul li a {
        padding: 16px 2px;
        font-size: .95rem;
    }

    .main-nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-nav ul li a::after {
        display: none;
    }

    .main-nav .dropdown-menu,
    .main-nav .dropdown:hover > .dropdown-menu {
        position: static;
        display: none;
        max-height: none;
        margin: 0 0 12px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, .04);
        border: 0;
        border-radius: 10px;
    }

    .main-nav .dropdown.active > .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li a {
        padding: 11px 8px;
    }

    .dropdown.active > a .nav-chevron {
        transform: rotate(180deg);
    }

    .mobile-nav-actions {
        display: block;
        padding-top: 8px;
        border: 0 !important;
    }

    .mobile-nav-actions a {
        justify-content: flex-start !important;
        gap: 10px;
        color: var(--accent-yellow) !important;
    }

    .hamburger-menu {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 50%;
    }

    .hamburger-menu span {
        width: 17px;
    }

    .hamburger-menu[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-menu[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
    .hamburger-menu[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
        gap: 3rem;
    }

    .home-hero h1 {
        font-size: clamp(3.4rem, 6vw, 5.4rem);
    }

    .hero-visual {
        min-height: 510px;
    }
}

@media (max-width: 960px) {
    .home-hero {
        min-height: auto;
        padding-bottom: 3.5rem;
    }

    .home-hero-grid,
    .partnership-grid,
    .home-cta-inner,
    .split-heading,
    .sustainability-grid-home {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 500px;
        margin-top: -20px;
    }

    .hero-scroll {
        display: none;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-strip-grid > div:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .capability-strip-grid > div:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 720px) {
    :root { --header-height: 70px; }

    .container {
        width: min(100% - 32px, var(--container-width));
    }

    .logo,
    .logo img {
        width: 106px;
    }

    .header-cta,
    .account-link {
        display: none;
    }

    .header-icon-link {
        width: 38px;
        height: 38px;
    }

    .home-hero {
        padding-top: 4.5rem;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .home-hero-copy > p {
        font-size: .97rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .luminaire-head {
        width: 200px;
    }

    .light-beam {
        width: 330px;
        height: 270px;
    }

    .light-pool {
        width: 320px;
    }

    .hero-spec {
        min-width: 175px;
        padding: 11px 12px;
    }

    .hero-spec-one { top: 16%; right: -4%; }
    .hero-spec-two { bottom: 10%; left: -4%; }

    .capability-strip-grid {
        grid-template-columns: 1fr;
    }

    .capability-strip-grid > div {
        min-height: 68px;
        padding: 0 8px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        border-left: 0;
    }

    .solution-grid,
    .value-grid-home,
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-grid {
        grid-auto-rows: 360px;
    }

    .solution-card {
        min-height: 272px;
        padding: 22px;
    }

    .solution-card-copy {
        margin-top: 2.25rem;
    }

    .split-heading {
        gap: 1.3rem;
    }

    .section-heading h2,
    .partnership-copy h2,
    .sustainability-grid-home h2,
    .home-cta h2 {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
    }

    .partnership-visual {
        min-height: 450px;
    }

    .partnership-editorial {
        min-height: 310px;
        padding: 2.25rem 0;
    }

    .partnership-editorial span,
    .partnership-editorial strong {
        font-size: clamp(3.4rem, 17vw, 5rem);
    }

    .partnership-editorial small {
        margin-top: 2.25rem;
    }

    .plan-label {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .sustainability-grid-home {
        gap: 18px;
    }

    .sustainability-grid-home > div:nth-child(2) {
        margin-bottom: 25px;
    }

    .footer-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .page-header {
        padding: 4.8rem 0;
    }

    .download-card-grid {
        grid-template-columns: 1fr;
    }

    .download-account-note {
        grid-template-columns: 1fr;
    }

    .download-auth-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats-grid,
    .values-grid,
    .commitments-grid,
    .standards-grid,
    .highlights-grid,
    .capacity-stats {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 430px) {
    .header-actions {
        gap: 5px;
    }

    .home-hero h1 {
        font-size: 3.05rem;
    }

    .hero-visual {
        min-height: 365px;
    }

    .hero-spec-one {
        right: -11%;
    }

    .hero-spec-two {
        left: -9%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 960px) {
    .hero-editorial {
        min-height: auto;
        margin-top: 1rem;
        padding: 28px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        border-left: 0;
    }
}

@media (max-width: 720px) {
    .home-hero {
        min-height: auto;
    }

    .hero-editorial {
        display: none;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 34px;
    }

    .hero-proof span,
    .hero-proof span:first-child {
        padding: 10px 0;
    }

    .hero-proof span + span {
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mission: clearer priorities and distinct commitment icons */
.mission-page .mission-pillars {
    padding: clamp(3.75rem, 6vw, 5.5rem) 0;
}

.mission-page .pillars-container {
    gap: 18px;
}

.mission-page .mission-pillar {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1.4rem;
    padding: clamp(1.7rem, 3vw, 2.4rem);
    border-color: var(--line);
    box-shadow: none;
}

.mission-page .mission-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.mission-page .pillar-number {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: clamp(2.45rem, 4vw, 3.75rem);
    font-weight: 800;
    opacity: .95;
    letter-spacing: -.08em;
}

.mission-page .pillar-header {
    gap: 14px;
    margin-bottom: .8rem;
}

.mission-page .pillar-icon {
    width: 52px;
    height: 52px;
    color: var(--primary-green);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 1.15rem;
}

.mission-page .mission-pillar h3 {
    color: var(--ink);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.mission-page .mission-pillar p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .97rem;
    line-height: 1.7;
}

.mission-page .mission-pillar:hover .pillar-icon {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.mission-page .core-commitments {
    padding: clamp(3.75rem, 6vw, 5.5rem) 0;
}

.mission-page .commitments-grid {
    gap: 18px;
}

.mission-page .commitment-box {
    min-height: 230px;
    padding: 25px;
    border-color: var(--line);
    box-shadow: none;
    text-align: left;
}

.mission-page .commitment-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 0 1.35rem;
    color: var(--primary-green);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 1.15rem;
}

.mission-page .commitment-box h3 {
    margin: 0 0 .65rem;
    color: var(--ink);
    font-size: 1.13rem;
}

.mission-page .commitment-box p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.62;
}

@media (max-width: 720px) {
    .mission-page .mission-pillar {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 1rem;
        padding: 1.4rem;
    }

    .mission-page .pillar-number {
        font-size: 2.35rem;
    }

    .mission-page .pillar-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mission-page .mission-pillar p {
        grid-column: 2;
        font-size: .92rem;
    }
}

/* Shared interaction polish */
:where(
    .stat-box,
    .value-item,
    .mission-pillar,
    .commitment-box,
    .vision-pillar-card,
    .tech-card,
    .benefit-card,
    .service-card,
    .industry-card,
    .spec-card,
    .highlight-card,
    .standard-box,
    .capacity-stat
) {
    transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

:where(
    .stat-box,
    .value-item,
    .mission-pillar,
    .commitment-box,
    .vision-pillar-card,
    .tech-card,
    .benefit-card,
    .service-card,
    .industry-card,
    .spec-card,
    .highlight-card,
    .standard-box,
    .capacity-stat
):hover {
    border-color: rgba(31, 103, 78, .28);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

:where(
    .value-icon,
    .pillar-icon,
    .pillar-circle,
    .impact-icon,
    .tech-icon,
    .service-icon,
    .industry-icon,
    .spec-icon,
    .highlight-icon,
    .standard-icon,
    .stat-icon,
    .commitment-icon,
    .benefit-icon,
    .value-icon-modern,
    .solution-icon
) {
    transition: color .28s ease, background-color .28s ease, border-color .28s ease, transform .28s ease;
}

:where(
    .stat-box,
    .value-item,
    .mission-pillar,
    .commitment-box,
    .vision-pillar-card,
    .tech-card,
    .benefit-card,
    .service-card,
    .industry-card,
    .spec-card,
    .highlight-card,
    .standard-box,
    .capacity-stat,
    .solution-card,
    .value-grid-home article
):hover :where(
    .value-icon,
    .pillar-icon,
    .pillar-circle,
    .impact-icon,
    .tech-icon,
    .service-icon,
    .industry-icon,
    .spec-icon,
    .highlight-icon,
    .standard-icon,
    .stat-icon,
    .commitment-icon,
    .benefit-icon,
    .value-icon-modern,
    .solution-icon
) {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .sustainability-page .impact-intro {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sustainability-page .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 0;
    }

    .sustainability-page .impact-item:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 560px) {
    .sustainability-page .sustainability-impact {
        padding: 2rem 1.35rem;
        border-radius: 18px;
    }

    .sustainability-page .impact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sustainability-page .impact-item,
    .sustainability-page .impact-item:nth-child(3) {
        padding: 1.25rem 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
        border-left: 0;
    }

    .sustainability-page .impact-item:first-child {
        padding-top: 0;
        border-top: 0;
    }
}

/* Vision: consistent three-dimension cards */
.vision-impact {
    padding: clamp(3.75rem, 6vw, 6.25rem) 0;
}

.vision-impact .impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 2.25rem;
}

.vision-impact .impact-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: none;
}

.vision-impact .impact-card:hover {
    border-color: rgba(31, 103, 78, .32);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.vision-impact .impact-header {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 108px;
    padding: 22px 24px;
    color: #fff;
    background: var(--primary-green);
    text-align: left;
}

.vision-impact .impact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin: 0;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 12px;
    font-size: 1.1rem;
}

.vision-impact .impact-icon svg {
    width: 24px !important;
    height: 24px !important;
}

.vision-impact .impact-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.vision-impact .impact-description {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px 24px 20px;
}

.vision-impact .impact-description > p {
    min-height: 3.2em;
    margin: 0 0 1.15rem;
    color: var(--ink-soft);
    font-size: .94rem;
    font-weight: 650;
    line-height: 1.6;
}

.vision-impact .impact-points {
    gap: 0;
    border-top: 1px solid var(--line);
}

.vision-impact .impact-point {
    gap: 11px;
    align-items: flex-start;
    padding: .78rem 0;
    border-bottom: 1px solid var(--line);
}

.vision-impact .impact-point:last-child {
    border-bottom: 0;
}

.vision-impact .point-number {
    width: 24px;
    height: 24px;
    color: var(--primary-green-dark);
    font-size: .74rem;
}

.vision-impact .point-text {
    color: var(--ink-soft);
    font-size: .87rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .vision-impact .impact-grid {
        grid-template-columns: 1fr;
    }

    .vision-impact .impact-description > p {
        min-height: 0;
    }
}

/* Homepage readability and rhythm refinement */
.home-section,
.home-cta {
    position: relative;
}

.home-section + .home-section::before,
.home-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(calc(100% - 48px), var(--container-width));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 63, 48, .16) 18%, rgba(217, 228, 38, .42) 50%, rgba(18, 63, 48, .16) 82%, transparent);
    transform: translateX(-50%);
}

.home-partnership::before,
.home-cta::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14) 24%, rgba(217, 228, 38, .42) 50%, rgba(255, 255, 255, .14) 76%, transparent);
}

.home-section .reveal,
.home-cta .reveal {
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.home-section .reveal.visible,
.home-cta .reveal.visible {
    transform: translateY(0);
}

.content-section .reveal,
.page-header .reveal {
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.content-section .reveal.visible,
.page-header .reveal.visible {
    transform: translateY(0);
}

.content-section > section {
    position: relative;
}

.content-section > section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 760px);
    height: 1px;
    opacity: .7;
    background: linear-gradient(90deg, transparent, rgba(18, 63, 48, .15) 25%, rgba(217, 228, 38, .34) 50%, rgba(18, 63, 48, .15) 75%, transparent);
    transform: translateX(-50%);
}

@media (max-width: 720px) {
    .content-section .reveal,
    .home-section .reveal,
    .home-cta .reveal {
        transform: translateY(12px);
        transition-duration: .55s;
    }
}

.home-hero {
    padding: clamp(3.25rem, 4.5vw, 4.75rem) 0;
}

.home-hero-grid {
    display: block;
}

.home-hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    column-gap: clamp(3rem, 7vw, 7rem);
    max-width: none;
}

.home-hero-copy .hero-kicker {
    grid-column: 1 / -1;
    margin-bottom: 1.75rem;
}

.home-hero-copy h1 {
    grid-column: 1;
    grid-row: 2 / 5;
    align-self: center;
    margin: 0;
}

.home-hero-copy > p {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin-bottom: 1.65rem;
}

.home-hero-copy .hero-actions {
    grid-column: 2;
    grid-row: 3;
}

.home-hero-copy .hero-proof {
    grid-column: 2;
    grid-row: 4;
    margin-top: 1.7rem;
    padding-top: 1.15rem;
}

.hero-editorial {
    display: none !important;
}

@media (max-width: 960px) {
    .home-hero-copy {
        display: block;
        max-width: 760px;
    }

    .home-hero-copy .hero-kicker {
        margin-bottom: 1.4rem;
    }

    .home-hero-copy h1 {
        margin-bottom: 1.35rem;
    }

    .home-hero-copy > p {
        margin-bottom: 1.6rem;
    }
}

.home-section .eyebrow,
.home-section .solution-card-copy > span,
.home-section .insight-overlay > span,
.home-section .partnership-editorial small,
.home-section .hero-editorial-label {
    font-size: .78rem;
    letter-spacing: .1em;
}

.capability-strip span,
.process-list > div > span {
    font-size: .78rem;
}

.capability-strip p,
.hero-proof span,
.process-list p,
.partnership-copy > p {
    color: rgba(255, 255, 255, .76);
    font-size: .9rem;
}

@media (max-width: 720px) {
    .home-section {
        padding: 3.5rem 0;
    }

    .section-heading {
        margin-bottom: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .home-section .reveal,
    .home-cta .reveal,
    .content-section .reveal,
    .page-header .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Phase 33 centralized site identity */
.footer-social-links{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}.footer-social-links a{width:34px;height:34px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.08);color:inherit;text-decoration:none}.footer-social-links a:hover{background:rgba(255,255,255,.16)}
.contact-direct-links{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:14px}.contact-direct-links a{display:inline-flex;align-items:center;gap:7px;color:var(--primary,#1a3a2a);font-weight:600;text-decoration:none}.contact-direct-links a:hover{text-decoration:underline}

/* ===== assets/css/design-system.css ===== */
/* ========================================================================== 
   TOPPRODUCTSREVIEW Design System — Phase 3
   Shared tokens and reusable public components.
   Loaded after style.css + modern.css so it can safely harmonize legacy pages.
   ========================================================================== */

:root {
    --ui-space-1: .25rem;
    --ui-space-2: .5rem;
    --ui-space-3: .75rem;
    --ui-space-4: 1rem;
    --ui-space-5: 1.25rem;
    --ui-space-6: 1.5rem;
    --ui-space-8: 2rem;
    --ui-space-10: 2.5rem;
    --ui-space-12: 3rem;
    --ui-space-16: 4rem;
    --ui-radius-xs: 8px;
    --ui-radius-sm: 12px;
    --ui-radius-md: 18px;
    --ui-radius-lg: 26px;
    --ui-radius-pill: 999px;
    --ui-control-height: 48px;
    --ui-border: 1px solid var(--line, #dfe5df);
    --ui-focus: 0 0 0 4px rgba(217, 228, 38, .22);
    --ui-card-shadow: 0 10px 34px rgba(7, 29, 22, .065);
    --ui-card-shadow-hover: 0 22px 55px rgba(7, 29, 22, .12);
    --ui-transition: 180ms cubic-bezier(.2, .8, .2, 1);
}

/* Utilities ---------------------------------------------------------------- */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ui-stack {
    display: flex;
    flex-direction: column;
    gap: var(--ui-space-4);
}

.ui-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ui-space-3);
    align-items: center;
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.ui-section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.ui-section-head {
    display: flex;
    gap: 1.5rem;
    align-items: end;
    justify-content: space-between;
    margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.ui-section-head > div:first-child {
    max-width: 760px;
}

.ui-section-head h2 {
    margin: .45rem 0 .55rem;
    font-size: clamp(1.9rem, 3.3vw, 3rem);
    line-height: 1.08;
}

.ui-section-head p {
    margin: 0;
    color: var(--ink-soft);
}

/* Global controls ---------------------------------------------------------- */
button,
input,
select,
textarea {
    font: inherit;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.ui-affiliate-btn,
.ui-search-box button,
.ui-page-nav,
.ui-page-number {
    cursor: pointer;
}

.btn[disabled],
button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
    cursor: not-allowed;
    opacity: .58;
}

/* Breadcrumbs -------------------------------------------------------------- */
.ui-breadcrumbs {
    margin: 0;
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 650;
}

.ui-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ui-breadcrumbs li {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    min-width: 0;
}

.ui-breadcrumbs li i {
    color: #9aa9a2;
    font-size: .58rem;
}

.ui-breadcrumbs a {
    color: var(--primary-green-light);
}

.ui-breadcrumbs a:hover {
    color: var(--primary-green-dark);
}

.ui-breadcrumbs span[aria-current='page'] {
    max-width: min(55vw, 460px);
    overflow: hidden;
    color: var(--ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-breadcrumb-wrap {
    padding: 1rem 0;
    background: rgba(255, 255, 255, .72);
    border-bottom: var(--ui-border);
}

/* Badges ------------------------------------------------------------------- */
.ui-badge {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    min-height: 26px;
    padding: 0 .62rem;
    color: var(--ink-soft);
    background: #eef2ef;
    border: 1px solid rgba(16, 35, 29, .08);
    border-radius: var(--ui-radius-pill);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ui-badge-success {
    color: #0d5b36;
    background: #e8f7ef;
    border-color: #c8ead8;
}

.ui-badge-warning {
    color: #805500;
    background: #fff7db;
    border-color: #f2dda0;
}

.ui-badge-danger {
    color: #9c2f35;
    background: #fff0f0;
    border-color: #f5cdcf;
}

.ui-badge-deal,
.ui-badge-featured {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.ui-badge-info {
    color: #315c79;
    background: #edf6fb;
    border-color: #cfe3ee;
}

/* Rating ------------------------------------------------------------------- */
.ui-rating {
    display: inline-flex;
    gap: .42rem;
    align-items: center;
    min-width: 0;
    color: var(--ink-soft);
    font-size: .75rem;
}

.ui-rating-stars {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #d7ddd9;
    font-size: .9rem;
    line-height: 1;
    letter-spacing: .06em;
    white-space: nowrap;
}

.ui-rating-stars-base {
    display: block;
}

.ui-rating-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    color: #d1a900;
    white-space: nowrap;
}

.ui-rating strong {
    color: var(--ink);
    font-size: .76rem;
}

.ui-rating-count {
    color: var(--text-muted);
}

/* Price -------------------------------------------------------------------- */
.ui-price {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.ui-price strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.1;
}

.ui-price-currency {
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: .68em;
    font-weight: 800;
}

.ui-price del {
    color: var(--text-muted);
    font-size: .76rem;
}

.ui-price small {
    width: 100%;
    color: var(--text-muted);
    font-size: .7rem;
}

/* Affiliate CTA ------------------------------------------------------------ */
.ui-affiliate-btn {
    display: inline-flex;
    gap: .65rem;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.15rem;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
    border-radius: var(--ui-radius-pill);
    font-size: .82rem;
    font-weight: 850;
    line-height: 1;
    transition: transform var(--ui-transition), box-shadow var(--ui-transition), background var(--ui-transition);
}

.ui-affiliate-btn:hover {
    color: var(--primary-green-dark);
    background: var(--accent-yellow-light);
    box-shadow: 0 12px 28px rgba(7, 29, 22, .14);
    transform: translateY(-2px);
}

.ui-affiliate-btn-compact {
    min-height: 40px;
    padding-inline: .95rem;
    font-size: .74rem;
}

.ui-affiliate-store {
    font-weight: 650;
    opacity: .72;
}

/* Search ------------------------------------------------------------------- */
.ui-search-box {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .75rem;
    align-items: center;
    width: min(100%, 850px);
    min-height: 62px;
    margin-inline: auto;
    padding: .42rem .48rem .42rem 1rem;
    background: #fff;
    border: 1px solid rgba(16, 35, 29, .13);
    border-radius: var(--ui-radius-pill);
    box-shadow: var(--ui-card-shadow);
}

.ui-search-box:focus-within {
    border-color: rgba(31, 103, 78, .42);
    box-shadow: var(--ui-focus), var(--ui-card-shadow);
}

.ui-search-icon {
    color: var(--primary-green-light);
}

.ui-search-box input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: .92rem;
}

.ui-search-box input::placeholder {
    color: #819088;
}

.ui-search-box button {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.15rem;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border: 0;
    border-radius: var(--ui-radius-pill);
    font-size: .78rem;
    font-weight: 850;
}

.ui-search-box button:hover {
    background: var(--accent-yellow-light);
}

.ui-search-box-compact {
    min-height: 50px;
    padding-block: .25rem;
}

.ui-search-box-compact input,
.ui-search-box-compact button {
    min-height: 40px;
    height: 40px;
}

/* Product cards ------------------------------------------------------------ */
.ui-product-grid,
.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.ui-product-card {
    position: relative;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: var(--surface);
    border: var(--ui-border);
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-card-shadow);
    transition: transform var(--ui-transition), border-color var(--ui-transition), box-shadow var(--ui-transition);
}

.ui-product-card:hover {
    border-color: rgba(31, 103, 78, .28);
    box-shadow: var(--ui-card-shadow-hover);
    transform: translateY(-4px);
}

.ui-product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.ui-product-media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, #f7f8f4, #eef1eb);
    border-bottom: var(--ui-border);
}

.ui-product-media img {
    width: 100%;
    height: 100%;
    padding: clamp(.7rem, 3vw, 1.25rem);
    object-fit: contain;
    transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
}

.ui-product-card:hover .ui-product-media img {
    transform: scale(1.035);
}

.ui-product-badge,
.ui-product-deal {
    position: absolute;
    top: .8rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    max-width: calc(100% - 1.6rem);
    padding: 0 .62rem;
    overflow: hidden;
    border-radius: var(--ui-radius-pill);
    font-size: .66rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-product-badge {
    left: .8rem;
    color: #fff;
    background: rgba(7, 29, 22, .88);
    backdrop-filter: blur(8px);
}

.ui-product-deal {
    right: .8rem;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
}

.ui-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .85rem;
    padding: 1.15rem;
}

.ui-product-heading {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.ui-product-heading strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ui-product-heading small {
    min-height: 1.2em;
    overflow: hidden;
    color: var(--primary-green-light);
    font-size: .72rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-product-snippet {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: .74rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ui-product-snippet i {
    margin-right: .4rem;
    color: var(--primary-green-light);
}

.ui-product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .42rem;
}

.ui-product-specs > span {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    min-height: 27px;
    max-width: 100%;
    padding: 0 .55rem;
    overflow: hidden;
    color: var(--ink-soft);
    background: var(--surface-muted);
    border: 1px solid rgba(16, 35, 29, .06);
    border-radius: var(--ui-radius-pill);
    font-size: .66rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-product-specs i {
    color: var(--primary-green-light);
    font-size: .65rem;
}

.ui-product-commerce {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .25rem;
}

.ui-product-card-cta {
    display: flex;
    gap: .6rem;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .3rem;
    color: var(--primary-green);
    font-size: .76rem;
    font-weight: 850;
}

.ui-product-card-cta i {
    transition: transform var(--ui-transition);
}

.ui-product-card:hover .ui-product-card-cta i {
    transform: translateX(4px);
}

.ui-product-card-compact .ui-product-media {
    aspect-ratio: 1 / .82;
}

.ui-product-card-compact .ui-product-body {
    padding: 1rem;
}

/* Category cards ----------------------------------------------------------- */
.ui-category-grid,
.cat-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1rem;
}

.ui-category-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 145px;
    padding: 1.25rem;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-card-shadow);
    transition: transform var(--ui-transition), border-color var(--ui-transition), box-shadow var(--ui-transition);
}

.ui-category-card::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 135px;
    height: 135px;
    background: rgba(217, 228, 38, .13);
    border-radius: 50%;
    pointer-events: none;
}

.ui-category-card:hover {
    color: var(--ink);
    border-color: rgba(31, 103, 78, .3);
    box-shadow: var(--ui-card-shadow-hover);
    transform: translateY(-3px);
}

.ui-category-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--primary-green);
    background: var(--surface-muted);
    border-radius: 15px;
    font-size: 1.2rem;
}

.ui-category-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .3rem;
}

.ui-category-content strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.ui-category-description {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: .74rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ui-category-count {
    color: var(--text-muted);
    font-size: .7rem;
    font-weight: 700;
}

.ui-category-arrow {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-radius: 50%;
    transition: transform var(--ui-transition);
}

.ui-category-card:hover .ui-category-arrow {
    transform: translateX(3px);
}

/* Brand cards -------------------------------------------------------------- */
.ui-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: 1rem;
}

.ui-brand-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .9rem;
    align-items: center;
    min-height: 92px;
    padding: 1rem;
    color: var(--ink);
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-card-shadow);
    transition: border-color var(--ui-transition), transform var(--ui-transition), box-shadow var(--ui-transition);
}

.ui-brand-card:hover {
    color: var(--ink);
    border-color: rgba(31, 103, 78, .3);
    box-shadow: var(--ui-card-shadow-hover);
    transform: translateY(-2px);
}

.ui-brand-logo {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    color: var(--primary-green);
    background: var(--surface-muted);
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 850;
}

.ui-brand-logo img {
    width: 100%;
    height: 100%;
    padding: .45rem;
    object-fit: contain;
}

.ui-brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .15rem;
}

.ui-brand-copy strong {
    overflow: hidden;
    font-size: .9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-brand-copy small {
    color: var(--text-muted);
    font-size: .69rem;
}

.ui-brand-card > i {
    color: var(--primary-green-light);
    font-size: .75rem;
}

/* Alerts ------------------------------------------------------------------- */
.ui-alert {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .8rem;
    align-items: start;
    padding: 1rem;
    color: var(--ink-soft);
    background: #f2f7f8;
    border: 1px solid #d9e6e8;
    border-radius: var(--ui-radius-sm);
}

.ui-alert > i {
    margin-top: .2rem;
    color: #47768a;
}

.ui-alert strong {
    display: block;
    margin-bottom: .12rem;
    color: var(--ink);
    font-size: .83rem;
}

.ui-alert p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.55;
}

.ui-alert-success {
    background: #edf8f2;
    border-color: #cee9da;
}

.ui-alert-success > i {
    color: #27714b;
}

.ui-alert-warning {
    background: #fff8e7;
    border-color: #eedda7;
}

.ui-alert-warning > i {
    color: #9a720e;
}

.ui-alert-danger {
    background: #fff1f1;
    border-color: #f0cfd1;
}

.ui-alert-danger > i {
    color: #ad3e44;
}

.ui-alert-close {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--ink-soft);
    background: transparent;
    border: 0;
    border-radius: 50%;
}

.ui-alert-close:hover {
    background: rgba(16, 35, 29, .07);
}

/* Form components ---------------------------------------------------------- */
.ui-form {
    display: grid;
    gap: 1rem;
}

.ui-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ui-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .42rem;
}

.ui-field label {
    color: var(--ink);
    font-size: .76rem;
    font-weight: 800;
}

.ui-field input,
.ui-field textarea,
.ui-field select {
    width: 100%;
    min-height: var(--ui-control-height);
    padding: .72rem .85rem;
    color: var(--ink);
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-sm);
    outline: 0;
    transition: border-color var(--ui-transition), box-shadow var(--ui-transition);
}

.ui-field textarea {
    resize: vertical;
    line-height: 1.55;
}

.ui-field input:focus,
.ui-field textarea:focus,
.ui-field select:focus {
    border-color: rgba(31, 103, 78, .55);
    box-shadow: var(--ui-focus);
}

.ui-field-help,
.ui-field-error {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    color: var(--text-muted);
    font-size: .68rem;
}

.ui-field-error {
    color: #a9363d;
}

.ui-field.has-error input,
.ui-field.has-error textarea,
.ui-field.has-error select {
    border-color: #cf6f75;
}

/* Empty state -------------------------------------------------------------- */
.ui-empty-state,
.cat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: clamp(2rem, 6vw, 4rem);
    color: var(--ink-soft);
    text-align: center;
    background: #fff;
    border: 1px dashed #cbd5cf;
    border-radius: var(--ui-radius-lg);
}

.ui-empty-icon,
.cat-empty > i:first-child {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 1rem;
    color: var(--primary-green);
    background: var(--surface-muted);
    border-radius: 20px;
    font-size: 1.35rem;
}

.ui-empty-state h3,
.cat-empty h3 {
    margin: 0 0 .55rem;
    color: var(--ink);
    font-size: 1.25rem;
}

.ui-empty-state p,
.cat-empty p {
    max-width: 520px;
    margin: 0 0 1.25rem;
    color: var(--ink-soft);
    font-size: .85rem;
}

/* Loading/skeleton --------------------------------------------------------- */
.ui-loading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    gap: 1rem;
}

.ui-skeleton-card {
    padding: 1rem;
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-md);
}

.ui-skeleton {
    position: relative;
    display: block;
    overflow: hidden;
    background: #edf1ed;
    border-radius: 8px;
}

.ui-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
    transform: translateX(-100%);
    animation: ui-skeleton-shimmer 1.35s infinite;
}

.ui-skeleton-media {
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.ui-skeleton-line {
    height: 10px;
    margin-top: .55rem;
    width: 72%;
}

.ui-skeleton-line.wide { width: 92%; height: 14px; }
.ui-skeleton-line.short { width: 45%; }

@keyframes ui-skeleton-shimmer {
    to { transform: translateX(100%); }
}

/* Pagination --------------------------------------------------------------- */
.ui-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: center;
    margin-top: 2.25rem;
}

.ui-page-numbers {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
}

.ui-page-number,
.ui-page-nav {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 .7rem;
    color: var(--ink-soft);
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-pill);
    font-size: .72rem;
    font-weight: 800;
}

.ui-page-number:hover,
.ui-page-nav:hover,
.ui-page-number.active {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.ui-page-gap {
    padding: 0 .2rem;
    color: var(--text-muted);
}

/* Modal -------------------------------------------------------------------- */
body.ui-modal-open {
    overflow: hidden;
}

.ui-modal[hidden] {
    display: none !important;
}

.ui-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.ui-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 18, 13, .74);
    backdrop-filter: blur(5px);
}

.ui-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 650px);
    max-height: min(88vh, 780px);
    overflow: auto;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--ui-radius-lg);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.ui-modal-dialog > header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.3rem;
    background: rgba(255, 255, 255, .96);
    border-bottom: var(--ui-border);
    backdrop-filter: blur(10px);
}

.ui-modal-dialog > header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.ui-modal-dialog > header button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: var(--surface-muted);
    border: 0;
    border-radius: 50%;
}

.ui-modal-body {
    padding: 1.3rem;
}

.ui-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
    padding: 1rem 1.3rem;
    background: var(--surface-muted);
    border-top: var(--ui-border);
}

/* Catalogue harmonisation -------------------------------------------------- */
.cat-search-bar {
    padding: 1.35rem 0;
    background: #fff;
    border-bottom: var(--ui-border);
}

.cat-search-bar form:not(.ui-search-box) {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100%, 850px);
    margin-inline: auto;
    overflow: hidden;
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-pill);
    box-shadow: var(--ui-card-shadow);
}

.cat-search-bar form:not(.ui-search-box) input {
    min-width: 0;
    min-height: 56px;
    padding: 0 1.25rem;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
}

.cat-search-bar form:not(.ui-search-box) button {
    min-width: 58px;
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border: 0;
}

.cat-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    padding: 1.4rem 0;
}

.cat-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 .82rem;
    color: var(--ink-soft);
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-pill);
    font-size: .72rem;
    font-weight: 800;
}

.cat-filter-chip:hover,
.cat-filter-chip.active {
    color: var(--primary-green-dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.cat-section-header {
    display: flex;
    gap: 1rem;
    align-items: end;
    justify-content: space-between;
    margin: 1.25rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: var(--ui-border);
}

.cat-section-header h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.cat-results-count {
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 750;
}

/* Legacy catalogue cards receive the same visual language until every page
   has been moved to PHP UI components. */
.cat-product-card,
.cat-category-card {
    overflow: hidden;
    background: #fff;
    border: var(--ui-border);
    border-radius: var(--ui-radius-md) !important;
    box-shadow: var(--ui-card-shadow) !important;
}

.cat-product-card:hover,
.cat-category-card:hover {
    border-color: rgba(31, 103, 78, .28) !important;
    box-shadow: var(--ui-card-shadow-hover) !important;
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 720px) {
    :root {
        --ui-control-height: 46px;
    }

    .ui-section-head,
    .cat-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ui-form-row {
        grid-template-columns: 1fr;
    }

    .ui-search-box {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 56px;
        padding-left: .85rem;
    }

    .ui-search-box button {
        width: 46px;
        min-width: 46px;
        padding: 0;
    }

    .ui-search-box button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .ui-product-grid,
    .cat-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .ui-product-body {
        gap: .65rem;
        padding: .85rem;
    }

    .ui-product-heading strong {
        font-size: .9rem;
    }

    .ui-product-specs > span:nth-child(n+3) {
        display: none;
    }

    .ui-category-card {
        min-height: 118px;
        padding: 1rem;
    }

    .ui-category-description {
        display: none;
    }

    .ui-pagination {
        justify-content: space-between;
    }

    .ui-page-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .ui-modal {
        align-items: end;
        padding: 0;
    }

    .ui-modal-dialog {
        width: 100%;
        max-height: 90vh;
        border-radius: 24px 24px 0 0;
    }
}

@media (max-width: 430px) {
    .ui-product-grid,
    .cat-product-grid {
        grid-template-columns: 1fr;
    }

    .ui-product-media {
        aspect-ratio: 16 / 10;
    }

    .ui-category-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ui-category-arrow {
        display: none;
    }

    .ui-page-nav span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ui-product-card,
    .ui-category-card,
    .ui-brand-card,
    .ui-affiliate-btn,
    .ui-product-media img,
    .ui-product-card-cta i,
    .ui-category-arrow {
        transition: none !important;
        transform: none !important;
    }

    .ui-skeleton::after {
        animation: none;
    }
}

/* Page compositions added during Phase 3 ---------------------------------- */
.search-page-head {
    padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(circle at 78% 24%, rgba(217, 228, 38, .13), transparent 24%),
        linear-gradient(135deg, #f8faf6, #edf2ea);
    border-bottom: var(--ui-border);
    text-align: center;
}

.search-page-head .eyebrow {
    justify-content: center;
}

.search-page-head h1 {
    margin: .8rem 0 .65rem;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.02;
}

.search-page-head > .container > p {
    max-width: 650px;
    margin: 0 auto 1.6rem;
    color: var(--ink-soft);
}

.search-results-shell {
    min-height: 50vh;
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.catalogue-cta {
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(217, 228, 38, .16), transparent 24%),
        linear-gradient(130deg, var(--primary-green-dark), var(--primary-green));
}

.catalogue-cta-inner {
    max-width: 860px;
    text-align: center;
}

.catalogue-cta .eyebrow {
    justify-content: center;
}

.catalogue-cta h2 {
    margin: .8rem 0 .9rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.catalogue-cta p {
    max-width: 650px;
    margin: 0 auto 1.6rem;
    color: rgba(255, 255, 255, .68);
}

.catalogue-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.catalogue-back-link {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 3.5rem;
}

/* Existing public forms use these aliases while their PHP remains intact. */
.form-group.ui-field {
    margin-bottom: 0;
}

.contact-form.ui-form {
    gap: 1.1rem;
}

.contact-form.ui-form .ui-form-row {
    gap: 1rem;
}

.contact-form.ui-form .form-group label,
.ui-form .form-group label {
    display: block;
    margin-bottom: .42rem;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 800;
}

.contact-form.ui-form input,
.contact-form.ui-form textarea,
.contact-form.ui-form select,
.ui-form .form-group input:not([type='submit']),
.ui-form .form-group textarea,
.ui-form .form-group select {
    width: 100%;
    min-height: var(--ui-control-height);
    padding: .72rem .85rem;
    color: var(--ink);
    background: #fff;
    border: var(--ui-border) !important;
    border-radius: var(--ui-radius-sm) !important;
    outline: 0;
    box-shadow: none;
}

.contact-form.ui-form textarea,
.ui-form .form-group textarea {
    min-height: 140px;
}

.contact-form.ui-form input:focus,
.contact-form.ui-form textarea:focus,
.contact-form.ui-form select:focus,
.ui-form .form-group input:focus,
.ui-form .form-group textarea:focus,
.ui-form .form-group select:focus {
    border-color: rgba(31, 103, 78, .55) !important;
    box-shadow: var(--ui-focus) !important;
}

@media (max-width: 720px) {
    .search-page-head {
        text-align: left;
    }

    .search-page-head .eyebrow {
        justify-content: flex-start;
    }

    .search-page-head > .container > p {
        margin-inline: 0;
    }

    .catalogue-cta-actions .btn {
        width: 100%;
    }
}

.form-error-text {
    display: block;
    min-height: 1.1em;
    color: #a9363d;
    font-size: .69rem;
    line-height: 1.35;
}

.form-error-text:empty {
    display: none;
}

/* Phase 6 category imagery */
.ui-category-icon.has-image{overflow:hidden;padding:0;background:#eef2ef}.ui-category-icon.has-image img{display:block;width:100%;height:100%;object-fit:cover}

/* Phase 7: product-to-brand discovery link */
.prd-brand-link{display:inline-flex;align-items:center;gap:7px;margin:.2rem 0 1rem;padding:7px 10px;border:1px solid var(--ui-border,#e2e7e4);border-radius:999px;color:var(--primary-green,#173d2f);text-decoration:none;font-size:.84rem;font-weight:700;background:#f7faf8}.prd-brand-link:hover{border-color:var(--accent-yellow,#c8d200);background:#fbfddf}.prd-brand-link .fa-arrow-right{font-size:.72rem}


/* Phase 28: logout remains visually link-like while using POST + CSRF. */
.logout-inline-form { margin: 0; }
.logout-inline-form button { appearance:none; border:0; background:transparent; color:inherit; font:inherit; cursor:pointer; display:flex; align-items:center; gap:.55rem; width:100%; text-align:left; padding:inherit; }
.account-logout-form { margin:0; }
.account-logout-form button { appearance:none; border:0; background:transparent; color:inherit; font:inherit; cursor:pointer; width:100%; display:flex; align-items:center; gap:inherit; text-align:left; }
.account-logout-form button span { flex:1; text-align:left; }

/* ===== assets/css/navigation.css ===== */
/* TOPPRODUCTSREVIEW Phase 4 — Header & navigation layer */
.discovery-header {
    overflow: visible;
}

.discovery-header .header-shell {
    gap: clamp(12px, 2vw, 28px);
}

.discovery-nav {
    min-width: 0;
}

.discovery-nav > ul {
    white-space: nowrap;
}

.discovery-nav .dropdown-menu .dropdown {
    position: relative;
}

.discovery-nav .dropdown-menu .dropdown > .dropdown-menu {
    top: -10px;
    left: calc(100% + 8px);
    display: none;
}

.discovery-nav .dropdown-menu .dropdown:hover > .dropdown-menu,
.discovery-nav .dropdown-menu .dropdown:focus-within > .dropdown-menu {
    display: block;
}

.discovery-actions {
    flex-shrink: 0;
}

.header-search-toggle,
.header-favorites-link {
    flex: 0 0 40px;
}

.header-account-menu {
    position: relative;
}

.header-account-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    background: transparent;
    font: inherit;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.header-account-button:hover,
.header-account-button[aria-expanded='true'] {
    color: #071d16;
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.account-chevron {
    font-size: .62rem;
    transition: transform .2s ease;
}

.header-account-button[aria-expanded='true'] .account-chevron {
    transform: rotate(180deg);
}

.header-account-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1400;
    width: min(290px, calc(100vw - 32px));
    padding: 9px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    background: #0a251c;
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.header-account-panel[hidden] {
    display: none;
}

.account-panel-intro {
    display: grid;
    gap: 3px;
    padding: 11px 12px 12px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.account-panel-intro strong {
    color: #fff;
    font-size: .86rem;
}

.account-panel-intro small {
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-account-panel > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 9px;
    color: rgba(255,255,255,.76);
    font-size: .8rem;
    font-weight: 650;
    text-decoration: none;
}

.header-account-panel > a i {
    width: 17px;
    color: var(--accent-yellow);
    text-align: center;
}

.header-account-panel > a:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.header-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1350;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.09);
    background: rgba(7,29,22,.99);
    box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.header-search-panel[hidden] {
    display: none;
}

.header-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search-form {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    flex: 1;
    min-height: 52px;
    padding-left: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
}

.header-search-form > i {
    color: var(--accent-yellow);
}

.header-search-form input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 14px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: .9rem;
}

.header-search-form input::placeholder {
    color: rgba(255,255,255,.48);
}

.header-search-form button {
    align-self: stretch;
    min-width: 108px;
    padding: 0 20px;
    border: 0;
    color: #071d16;
    background: var(--accent-yellow);
    font: inherit;
    font-size: .8rem;
    font-weight: 800;
    cursor: pointer;
}

.header-search-form button:hover {
    background: #fff;
}

.header-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.header-search-close:hover {
    color: #071d16;
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.mobile-nav-utility {
    display: none;
}

body.header-search-open::after {
    content: '';
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 900;
    background: rgba(3,12,9,.32);
    pointer-events: none;
}

@media (max-width: 1380px) {
    .discovery-nav ul li a {
        padding-right: 10px;
        padding-left: 10px;
    }

    .header-action-text {
        display: none;
    }

    .header-account-button {
        width: 40px;
        padding: 0;
        border-radius: 50%;
    }

    .header-account-button .account-chevron {
        display: none;
    }
}

@media (max-width: 1180px) {
    .discovery-nav > ul {
        white-space: normal;
    }

    .discovery-nav .dropdown-menu .dropdown > .dropdown-menu,
    .discovery-nav .dropdown-menu .dropdown:hover > .dropdown-menu,
    .discovery-nav .dropdown-menu .dropdown:focus-within > .dropdown-menu {
        position: static;
        display: none;
        margin: 0 0 8px 10px;
        padding-left: 10px;
        border-left: 1px solid rgba(255,255,255,.12);
    }

    .discovery-nav .dropdown-menu .dropdown.active > .dropdown-menu {
        display: block;
    }

    .mobile-nav-utility {
        display: none;
        padding: 13px max(24px, calc((100vw - var(--container-width)) / 2)) 22px;
        border-top: 1px solid rgba(255,255,255,.08);
        background: #071d16;
    }

    .discovery-nav.active .mobile-nav-utility {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1210;
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 8px;
    }

    .mobile-nav-utility a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 8px 10px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 9px;
        color: rgba(255,255,255,.82);
        background: rgba(255,255,255,.04);
        font-size: .78rem;
        font-weight: 700;
        text-decoration: none;
    }

    .discovery-nav.active > ul {
        padding-bottom: 155px;
    }
}

@media (max-width: 680px) {
    .header-favorites-link {
        display: none;
    }

    .header-search-inner {
        gap: 7px;
    }

    .header-search-form {
        min-height: 48px;
        padding-left: 14px;
    }

    .header-search-form input {
        height: 46px;
        padding: 0 10px;
        font-size: .82rem;
    }

    .header-search-form button {
        min-width: 78px;
        padding: 0 12px;
        font-size: .75rem;
    }

    .header-search-close {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}

/* ===== assets/css/favorites.css ===== */
/* TOPPRODUCTSREVIEW Favorites — Phase 13 */
.favorite-form{margin:0;display:inline-flex}.favorite-control{appearance:none;border:1px solid rgba(7,29,22,.14);background:#fff;color:var(--primary-green,#071d16);border-radius:999px;min-height:42px;padding:.62rem .9rem;display:inline-flex;align-items:center;justify-content:center;gap:.45rem;font:inherit;font-weight:700;cursor:pointer;text-decoration:none;transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease}.favorite-control:hover{transform:translateY(-1px);border-color:rgba(7,29,22,.32);box-shadow:0 8px 22px rgba(7,29,22,.08)}.favorite-control:focus-visible{outline:3px solid rgba(205,170,66,.45);outline-offset:2px}.favorite-control.is-saved{background:#fff4f5;border-color:#f1bbc1;color:#b52535}.favorite-control.is-saved:hover{background:#ffe9eb}.favorite-control.is-disabled{opacity:.55;cursor:not-allowed}.favorite-control:disabled{opacity:.62;cursor:wait;transform:none}.favorite-control-compact{width:42px;height:42px;min-height:42px;padding:0}.favorite-control-compact .favorite-control-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.ui-product-card{position:relative}.ui-product-card>.favorite-form,.ui-product-card>.favorite-control-login,.ui-product-card>.favorite-control.is-disabled{position:absolute;right:.8rem;top:.8rem;z-index:4}.ui-product-card .ui-product-badge{max-width:calc(100% - 4rem)}
.header-favorites-link{position:relative}.header-favorite-count{position:absolute;top:-5px;right:-7px;min-width:18px;height:18px;padding:0 4px;border-radius:999px;background:var(--accent-yellow,#d1ae4c);color:#071d16;font-size:10px;font-weight:800;line-height:18px;text-align:center;box-shadow:0 0 0 2px #fff}.mobile-favorite-count{display:inline-grid;place-items:center;min-width:20px;height:20px;padding:0 5px;border-radius:999px;background:rgba(209,174,76,.18);font-size:.72rem;font-weight:800;margin-left:auto}
.favorite-live-region{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:9999;max-width:min(92vw,520px);padding:.72rem 1rem;border-radius:999px;background:#071d16;color:#fff;box-shadow:0 14px 40px rgba(0,0,0,.2);opacity:0;pointer-events:none;transition:opacity .2s ease}.favorite-live-region:not(:empty){opacity:1}.p13-product-favorite{margin-top:.25rem}.p13-product-favorite .favorite-control{min-width:160px}
.favorites-page-head{padding-bottom:1rem}.favorites-toolbar{display:flex;align-items:end;justify-content:space-between;gap:1rem;margin-bottom:1.25rem}.favorites-toolbar h2{margin:0}.favorites-toolbar p{margin:.3rem 0 0;color:var(--text-muted)}.favorites-grid .ui-product-card{height:100%}
@media (max-width:700px){.favorite-control:not(.favorite-control-compact){min-height:44px}.favorite-control-text{font-size:.9rem}.favorites-toolbar{align-items:flex-start;flex-direction:column}.header-favorite-count{top:-3px;right:-4px}}

/* ===== assets/css/search.css ===== */
.search-suggest-host {
    position: relative;
}

.search-suggestions {
    position: absolute;
    z-index: 1200;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(420px, 62vh);
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(7, 29, 22, .12);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(5, 25, 18, .18);
    padding: 6px;
}

.search-suggestions[hidden] { display: none !important; }

.search-suggestion-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 11px;
    color: #10231c;
    text-decoration: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.active,
.search-suggestion-item:focus-visible {
    background: #f0f7f4;
    outline: none;
}

.search-suggestion-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: #eaf4ef;
    color: #0b684a;
}

.search-suggestion-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.search-suggestion-copy strong,
.search-suggestion-copy small {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search-suggestion-copy strong { font-size: .92rem; }
.search-suggestion-copy small { color: #687870; font-size: .78rem; }
.search-suggestion-arrow { color: #708077; font-size: .82rem; }

.search-page-head {
    padding: clamp(46px, 7vw, 84px) 0 34px;
    background: linear-gradient(180deg, #f3f8f5 0%, rgba(243, 248, 245, 0) 100%);
}

.search-page-head h1 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.search-page-head > .container > p {
    max-width: 740px;
    color: #607068;
    margin-bottom: 24px;
}

.search-page-head .ui-search-box { max-width: 920px; }

.search-scope-note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 15px;
    color: #65756d;
    font-size: .82rem;
}

.search-scope-note span { display: inline-flex; align-items: center; gap: 6px; }
.search-scope-note i { color: #0d7958; }

.search-results-shell { padding-top: 30px; padding-bottom: 70px; }
.search-result-header { align-items: flex-end; gap: 18px; }
.search-result-header h2 { margin: 4px 0 0; }
.search-result-header .eyebrow { font-size: .72rem; }

.search-help-card {
    margin: 18px auto 0;
    max-width: 680px;
    border: 1px solid rgba(7, 29, 22, .1);
    border-radius: 14px;
    padding: 18px 20px;
    background: #fafcfb;
    color: #53645c;
}
.search-help-card strong { color: #142b22; display: block; margin-bottom: 5px; }
.search-help-card p { margin: 0; }

.header-search-form .search-suggestions {
    top: calc(100% + 10px);
    color: #10231c;
}

@media (max-width: 720px) {
    .search-suggestions { border-radius: 12px; }
    .search-page-head { padding-top: 34px; }
    .search-result-header { align-items: flex-start; flex-direction: column; }
    .search-scope-note { gap: 8px 11px; }
}

/* ===== assets/css/comparison.css ===== */
.compare-hero{padding:3.8rem 0 2.4rem;background:linear-gradient(135deg,#f5faf7,#fff);border-bottom:1px solid var(--border-color,#e3e9e6)}
.compare-kicker{display:inline-flex;align-items:center;gap:.55rem;font-weight:800;color:var(--primary-color,#13795b);text-transform:uppercase;letter-spacing:.08em;font-size:.78rem}.compare-hero h1{font-size:clamp(2.2rem,5vw,4rem);margin:.65rem 0}.compare-hero p{max-width:720px;color:var(--text-muted,#61706a);font-size:1.06rem}.compare-selection-summary{display:inline-flex;align-items:baseline;gap:.5rem;margin-top:1rem;padding:.55rem .85rem;border-radius:999px;background:#fff;border:1px solid #dfe8e3}.compare-selection-summary strong{font-size:1.35rem;color:var(--primary-color,#13795b)}
.compare-page{padding:2.4rem 0 5rem}.compare-empty-wrap{max-width:820px;margin:0 auto}.compare-search-block{margin-top:1.5rem;padding:1.25rem;border:1px solid #e1e8e4;border-radius:18px;background:#fff}.compare-search-block h2{font-size:1.05rem;margin:0 0 .8rem}.compare-one-card{margin-top:1.3rem;display:grid;grid-template-columns:90px 1fr auto;gap:1rem;align-items:center;padding:1rem;border:1px solid #e1e8e4;border-radius:18px;background:#fff}.compare-one-card img{width:90px;height:90px;object-fit:contain;border-radius:12px;background:#f6f8f7}.compare-one-card span{font-size:.78rem;text-transform:uppercase;color:#74817b}.compare-one-card h3{margin:.2rem 0}.compare-one-card a{font-weight:700;color:var(--primary-color,#13795b)}
.compare-toolbar{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1.2rem}.compare-toolbar>div:first-child{display:flex;flex-direction:column;gap:.2rem}.compare-toolbar span{font-size:.86rem;color:#66736d}.compare-toolbar-actions{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center}.compare-max-note{display:inline-flex;align-items:center;gap:.4rem;color:#23654e;font-size:.82rem;font-weight:800}.compare-clear{background:#fff;border:1px solid #e2e7e4;color:#8c3131}
.compare-table-wrap{overflow:auto;border:1px solid #dfe7e3;border-radius:20px;background:#fff;box-shadow:0 12px 32px rgba(12,43,31,.05)}.compare-table{width:100%;min-width:880px;border-collapse:separate;border-spacing:0;table-layout:fixed}.compare-table th,.compare-table td{padding:1rem;vertical-align:top;border-right:1px solid #e8eeeb;border-bottom:1px solid #e8eeeb;word-break:break-word}.compare-table tr:last-child th,.compare-table tr:last-child td{border-bottom:0}.compare-table th:last-child,.compare-table td:last-child{border-right:0}.compare-table thead th{background:#fbfdfc;position:sticky;top:0;z-index:2}.compare-row-heading{width:180px;min-width:180px;background:#fbfdfc!important;text-align:left;font-weight:800;color:#23332d;position:sticky;left:0;z-index:3}.compare-product-head{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;gap:.45rem;min-height:230px}.compare-product-head a{color:inherit;text-decoration:none}.compare-product-head img{display:block;width:150px;height:150px;object-fit:contain;margin:0 auto .6rem;border-radius:14px;background:#f7f9f8}.compare-product-head strong{display:block;font-size:1rem}.compare-product-head small{color:#68766f}.compare-remove{position:absolute;right:-.35rem;top:-.35rem;width:34px;height:34px;border:1px solid #dfe7e3;border-radius:999px;background:#fff;cursor:pointer}.compare-remove:hover{background:#fff2f2;color:#9d2626}.compare-subcategory,.compare-price-label{display:block;margin-top:.35rem;color:#74817b;font-size:.78rem}.compare-muted{color:#89938f;font-size:.88rem}.compare-section-row th{background:#0c2b1f!important;color:#fff!important;position:static;font-size:.83rem;text-transform:uppercase;letter-spacing:.07em;padding:.75rem 1rem}.compare-different td{background:#fffaf0}.compare-different .compare-row-heading{background:#fff7df!important}.compare-diff-badge{display:block;width:max-content;margin-top:.35rem;padding:.2rem .42rem;border-radius:999px;background:#f6d97a;color:#574008;font-size:.66rem;text-transform:uppercase;letter-spacing:.05em}.compare-list{padding:0;margin:0;list-style:none;display:grid;gap:.55rem}.compare-list li{display:flex;gap:.45rem;font-size:.86rem;line-height:1.45}.compare-pros i{color:#21835d;margin-top:.2rem}.compare-cons i{color:#a65a3a;margin-top:.2rem}.compare-offers{display:grid;gap:.8rem}.compare-offer-item{display:grid;gap:.55rem;padding:.75rem;border:1px solid #e5ebe8;border-radius:12px;background:#fbfdfc}.compare-offer-item>div{display:grid;gap:.35rem}.compare-offer-item .ui-price{font-size:.83rem}.compare-detail-link{display:inline-flex!important;justify-content:center;width:100%;font-size:.83rem}
.compare-toggle{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;border:1px solid #d7e1dc;background:#fff;color:#244137;border-radius:10px;padding:.6rem .8rem;font-weight:750;cursor:pointer;transition:.2s ease}.compare-toggle:hover,.compare-toggle.is-compared{border-color:#2b8868;background:#eef8f4;color:#166548}.compare-toggle-compact{width:42px;height:42px;padding:0;border-radius:999px;font-size:.78rem}.compare-toggle-compact span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.ui-product-card>.compare-toggle{position:absolute;z-index:5;left:.8rem;top:3.35rem}.ui-product-card{position:relative}
.compare-bar{position:fixed;left:50%;bottom:1rem;transform:translateX(-50%);width:min(1080px,calc(100% - 2rem));z-index:1000;background:#0b2a1e;color:#fff;border-radius:18px;box-shadow:0 18px 50px rgba(0,0,0,.24);padding:.75rem;transition:.2s ease}.compare-bar[hidden]{display:none}.compare-bar-attention{transform:translateX(-50%) scale(1.015)}.compare-bar-inner{display:flex;align-items:center;gap:.8rem}.compare-bar-items{display:flex;gap:.5rem;flex:1;min-width:0;overflow:auto}.compare-bar-item{display:flex;align-items:center;gap:.5rem;min-width:0;max-width:230px;padding:.4rem .5rem;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08);border-radius:11px}.compare-bar-item img{width:36px;height:36px;object-fit:contain;background:#fff;border-radius:7px}.compare-bar-item span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.78rem}.compare-bar-item button{border:0;background:transparent;color:#fff;cursor:pointer}.compare-bar-action{display:inline-flex;align-items:center;gap:.45rem;padding:.72rem .9rem;border-radius:11px;background:#fff;color:#0b2a1e;font-weight:800;text-decoration:none;white-space:nowrap}.compare-bar-action.is-disabled{opacity:.55;cursor:not-allowed}.header-compare-count{position:absolute;right:-4px;top:-5px;min-width:17px;height:17px;border-radius:999px;background:#148b67;color:#fff;font-size:.65rem;display:flex;align-items:center;justify-content:center}.header-compare-link{position:relative}.compare-live-region{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
@media(max-width:780px){.compare-toolbar{align-items:flex-start;flex-direction:column}.compare-one-card{grid-template-columns:70px 1fr}.compare-one-card img{width:70px;height:70px}.compare-one-card .compare-toggle{grid-column:1/-1}.compare-bar{bottom:.55rem;width:calc(100% - 1rem);border-radius:14px}.compare-bar-inner{align-items:stretch;flex-direction:column}.compare-bar-items{max-height:55px}.compare-bar-item{min-width:155px}.compare-bar-action{justify-content:center}.compare-product-head img{width:120px;height:120px}.compare-row-heading{width:145px;min-width:145px}.compare-table th,.compare-table td{padding:.8rem}}

/* ===== assets/css/newsletter.css ===== */
.newsletter-footer {
    margin: 0 0 2.25rem;
    padding: 1.4rem;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 1.5rem;
    align-items: center;
}
.newsletter-copy h3 { margin: .25rem 0 .45rem; font-size: clamp(1.2rem, 2vw, 1.65rem); color: #fff; }
.newsletter-copy p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.newsletter-form { display: flex; gap: .65rem; align-items: stretch; }
.newsletter-form input[type="email"] { min-width: 0; flex: 1; border-radius: 12px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; padding: .82rem .95rem; outline: none; }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,.72); box-shadow: 0 0 0 3px rgba(255,255,255,.1); }
.newsletter-form button { white-space: nowrap; border: 0; border-radius: 12px; padding: .82rem 1.1rem; font-weight: 750; cursor: pointer; }
.newsletter-form button:disabled { opacity: .65; cursor: wait; }
.newsletter-privacy { margin: .65rem 0 0; color: rgba(255,255,255,.62); font-size: .82rem; }
.newsletter-privacy a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.newsletter-message { margin-top: .65rem; padding: .65rem .8rem; border-radius: 10px; font-size: .88rem; }
.newsletter-message.is-success { background: rgba(74,222,128,.13); color: #bbf7d0; }
.newsletter-message.is-error { background: rgba(248,113,113,.13); color: #fecaca; }
.newsletter-hp { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.newsletter-preferences-section { padding: clamp(4rem, 8vw, 7rem) 0; min-height: 60vh; }
.newsletter-preferences-shell { max-width: 760px; }
.newsletter-preferences-card { background: #fff; border: 1px solid #e5e9e7; border-radius: 22px; padding: clamp(1.5rem, 4vw, 2.7rem); box-shadow: 0 20px 50px rgba(7,29,22,.08); }
.newsletter-preferences-card h1 { margin: .4rem 0 1rem; }
.newsletter-preferences-card p { color: #52615b; line-height: 1.7; }
.newsletter-unsubscribe-form { margin-top: 1.4rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter-message.is-error { background: #fff1f2; color: #9f1239; }
.newsletter-preferences-card .newsletter-message.is-success { background: #ecfdf5; color: #166534; }
@media (max-width: 820px) {
    .newsletter-footer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
}

/* ===== assets/css/responsive-mobile.css ===== */
/* TOPPRODUCTSREVIEW Phase 34 — responsive mobile hardening.
   This layer intentionally focuses on small-screen ergonomics without changing desktop layouts. */

html { max-width: 100%; }
body { max-width: 100%; }
main, .main-footer, .main-header, section, .container { min-width: 0; }
img, video, iframe, svg { max-width: 100%; }
.mobile-affiliate-cta { display: none; }

/* Safe wrapping for user/content data that can otherwise force horizontal overflow. */
.ui-product-heading strong,
.ui-product-snippet,
.article-reader-content,
.cms-page-content,
.p9-review-card,
.p14-review-editor,
.store-card,
.account-panel,
.newsletter-footer,
.footer-brand,
.catalog-filter-results {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 900px) {
    .container { width: 100%; padding-inline: clamp(14px, 4vw, 24px); }
    .ui-breadcrumb-wrap .container { overflow-x: auto; scrollbar-width: none; }
    .ui-breadcrumb-wrap .container::-webkit-scrollbar { display: none; }

    /* Filters stop being sticky and become a deliberate mobile drawer/toggle area. */
    .catalog-filter-panel { max-width: 100%; }
    .catalog-filter-toggle { min-height: 44px; align-items: center; }

    /* Horizontal content must scroll inside its own region instead of widening the page. */
    .p9-offer-table-wrap,
    .compare-table-wrap,
    .article-reader-content,
    .cms-page-content,
    .prd-table-wrap,
    .prd-data-table-wrap {
        max-width: 100%;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .article-reader-content pre,
    .cms-page-content pre {
        max-width: 100%;
        overflow-x: auto;
        white-space: pre;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 780px) {
    :root {
        --mobile-touch-target: 44px;
        --mobile-page-gutter: 16px;
    }

    html { scroll-padding-top: 82px; }
    body { overflow-x: clip; }

    /* Prevent iOS from zooming forms and keep controls easy to tap. */
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea {
        font-size: 16px !important;
        max-width: 100%;
    }

    button,
    .btn,
    .ui-button,
    .ui-affiliate-btn,
    .ui-product-card-cta,
    .footer-cta,
    .catalog-filter-toggle,
    .catalog-filter-submit,
    .account-primary-btn,
    .recent-clear-btn,
    .p14-review-submit,
    .p14-review-delete {
        min-height: var(--mobile-touch-target);
    }

    .header-icon-link,
    .hamburger-menu,
    .header-search-close,
    .compare-remove,
    .ui-favorite-btn,
    .compare-toggle {
        min-width: var(--mobile-touch-target);
        min-height: var(--mobile-touch-target);
    }

    /* Search/header controls remain usable on narrow screens. */
    .header-search-inner { gap: 8px; }
    .header-search-form { min-width: 0; flex: 1; }
    .header-search-form input { min-width: 0; }
    .header-search-form button { min-height: 44px; }

    /* Cards and grids should never create an implicit min-content overflow. */
    .ui-product-card,
    .ui-category-card,
    .ui-brand-card,
    .article-card,
    .store-card,
    .home-review-card,
    .account-summary-card,
    .account-panel,
    .compare-one-card,
    .p9-review-card {
        min-width: 0;
    }

    /* Toolbar patterns become vertical and full-width where useful. */
    .catalog-sort-form,
    .catalog-sort-form select,
    .affiliate-home-actions,
    .home-final-actions,
    .account-form-row,
    .p14-review-actions {
        max-width: 100%;
    }
    .catalog-sort-form select { min-width: 0; }

    /* Offer table becomes mobile cards instead of a 900px horizontal table. */
    .p9-offer-table-wrap { border: 0; box-shadow: none; background: transparent; overflow: visible; }
    .p9-offer-table { display: block; min-width: 0; width: 100%; }
    .p9-offer-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .p9-offer-table tbody { display: grid; gap: 12px; }
    .p9-offer-table tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        border: 1px solid var(--border-color,#e6e8eb);
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 8px 24px rgba(20,37,26,.05);
    }
    .p9-offer-table tr.is-best-offer { border-color: rgba(177,158,0,.35); }
    .p9-offer-table td,
    .p9-offer-table tr.is-best-offer td {
        display: grid;
        grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        width: 100%;
        padding: 10px 13px;
        border-top: 1px solid #eef0ee;
        background: transparent;
    }
    .p9-offer-table td:first-child { border-top: 0; }
    .p9-offer-table td::before {
        content: attr(data-label);
        color: #667085;
        font-size: .7rem;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: .05em;
        text-transform: uppercase;
    }
    .p9-offer-table td[data-label="Store"] { grid-template-columns: 1fr; }
    .p9-offer-table td[data-label="Store"]::before { display: none; }
    .p9-offer-table td[data-label="Action"] { grid-template-columns: 1fr; padding-top: 12px; }
    .p9-offer-table td[data-label="Action"]::before { display: none; }
    .p9-offer-table td[data-label="Action"] .ui-affiliate-btn,
    .p9-offer-table td[data-label="Action"] .p9-store-link { width: 100%; justify-content: center; }
    .p9-store-cell { min-width: 0; }

    /* Specification/data tables remain readable without forcing page width. */
    .prd-data-table-wrap { overflow-x: auto; }
    .prd-data-table { min-width: 620px; }
    .article-reader-content table,
    .cms-page-content table { max-width: 100%; }

    /* Comparison intentionally scrolls horizontally, with first column staying visible. */
    .compare-table-wrap {
        overflow: auto;
        border-radius: 14px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }
    .compare-table { min-width: max(720px, 100%); }
    .compare-table th,
    .compare-table td { scroll-snap-align: start; }
    .compare-table .compare-row-heading {
        position: sticky;
        left: 0;
        z-index: 2;
        background: #f8faf8;
        box-shadow: 8px 0 12px -12px rgba(7,29,22,.45);
    }
    .compare-table thead .compare-row-heading { z-index: 4; }
    .compare-product-head img { width: 96px; height: 96px; }
    .compare-toolbar-actions { width: 100%; }
    .compare-toolbar-actions .btn { flex: 1 1 180px; justify-content: center; }

    /* Account/auth/review actions should not create cramped side-by-side controls. */
    .p14-review-login a { min-height: 44px; display: inline-flex; align-items: center; }
    .account-auth-wrap { padding-inline: 0; }

    /* Footer/newsletter stack comfortably on narrow screens. */
    .newsletter-form { min-width: 0; }
    .newsletter-form input { min-width: 0; }
    .footer-social-links a { min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; }

    /* Mobile sticky affiliate CTA — rendered only when a real offer exists. */
    .mobile-affiliate-cta {
        position: fixed;
        z-index: 10040;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: minmax(0,1fr) auto;
        gap: 10px;
        align-items: center;
        padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
        background: rgba(255,255,255,.97);
        border-top: 1px solid rgba(7,29,22,.12);
        box-shadow: 0 -12px 32px rgba(7,29,22,.14);
        backdrop-filter: blur(12px);
    }
    .mobile-affiliate-cta-copy { min-width: 0; display: grid; gap: 2px; }
    .mobile-affiliate-cta-copy small {
        color: #69776f;
        font-size: .7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mobile-affiliate-cta-copy strong { color: #123d2d; font-size: .95rem; line-height: 1.2; }
    .mobile-affiliate-cta .ui-affiliate-btn { min-height: 46px; padding-inline: 16px; white-space: nowrap; }
    .mobile-affiliate-cta .ui-affiliate-store { display: none; }
    body.has-mobile-affiliate-cta { padding-bottom: calc(var(--mobile-affiliate-height, 72px) + env(safe-area-inset-bottom)); }
    body.has-mobile-affiliate-cta.has-mobile-compare-bar {
        padding-bottom: calc(var(--mobile-affiliate-height, 72px) + var(--mobile-compare-height, 112px) + 18px + env(safe-area-inset-bottom));
    }
    body.has-mobile-affiliate-cta .compare-bar {
        bottom: calc(var(--mobile-affiliate-height, 72px) + .55rem + env(safe-area-inset-bottom));
    }

    /* If only compare is present, reserve its visible area naturally via the bar itself. */
    body.has-mobile-compare-bar:not(.has-mobile-affiliate-cta) { padding-bottom: calc(var(--mobile-compare-height, 112px) + 1rem); }

    /* Sections use tighter but consistent vertical rhythm. */
    .articles-page,
    .stores-page,
    .article-reader,
    .cms-page-shell,
    .account-page,
    .favorites-page,
    .recent-page,
    .search-page,
    .discovery-page { max-width: 100%; }
}

@media (max-width: 560px) {
    .container { padding-inline: 14px; }

    .cat-main-image { height: min(64vw, 265px); }
    .cat-thumbnail-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
        padding-bottom: 8px;
    }
    .cat-thumb { scroll-snap-align: start; min-width: 60px; }

    .p9-purchase-summary { gap: 10px; }
    .p9-rating-summary, .p9-best-summary { padding: .9rem; }
    .p9-rating-row { grid-template-columns: 42px minmax(0,1fr) 32px; gap: .45rem; }
    .p9-faq-item { padding-inline: .9rem; }

    .compare-selection-summary { width: 100%; }
    .compare-table .compare-row-heading { width: 118px; min-width: 118px; }
    .compare-table th, .compare-table td { padding: .7rem; }
    .compare-product-head img { width: 82px; height: 82px; }

    .catalog-active-filters { gap: 6px; }
    .catalog-filter-pill, .catalog-clear-pill { min-height: 34px; }

    .mobile-affiliate-cta { grid-template-columns: minmax(0, 1fr) auto; }
    .mobile-affiliate-cta .ui-affiliate-btn { padding-inline: 13px; font-size: .86rem; }
}

@media (max-width: 390px) {
    .mobile-affiliate-cta-copy strong { font-size: .85rem; }
    .mobile-affiliate-cta .ui-affiliate-btn { padding-inline: 11px; }
    .mobile-affiliate-cta .ui-affiliate-btn i { display: none; }
    .p9-offer-table td { grid-template-columns: 82px minmax(0,1fr); }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-affiliate-cta { backdrop-filter: none; }
}

/* ===== assets/css/accessibility.css ===== */
/* ========================================================================== 
   TOPPRODUCTSREVIEW Accessibility Layer — Phase 35
   Global WCAG-oriented hardening without changing application behavior.
   ========================================================================== */

:root {
    --a11y-focus-color: #0b5f46;
    --a11y-focus-ring: 0 0 0 4px rgba(217, 228, 38, .48), 0 0 0 7px rgba(7, 29, 22, .9);
    --a11y-muted: #52655c;
}

html {
    scroll-padding-top: 6rem;
}

body {
    text-rendering: optimizeLegibility;
}

/* Keep the skip target focusable without drawing a second visual outline. */
#main-content[tabindex="-1"]:focus {
    outline: none;
}

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 100000;
    transform: translateY(-160%);
    padding: .72rem 1rem;
    border: 2px solid #fff;
    border-radius: .55rem;
    background: #071d16;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid #d9e426;
    outline-offset: 2px;
}

/* A single strong keyboard focus treatment across legacy and modern controls. */
:where(a[href], button, input, select, textarea, summary, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
    outline: 3px solid var(--a11y-focus-color) !important;
    outline-offset: 3px !important;
    box-shadow: var(--a11y-focus-ring) !important;
}

.discovery-header :where(a[href], button, input):focus-visible,
.main-footer :where(a[href], button, input):focus-visible,
.prd-lb :where(button, [role="button"]):focus-visible {
    outline-color: #d9e426 !important;
}

/* Never make placeholders the only readable cue. */
::placeholder {
    color: var(--a11y-muted);
    opacity: 1;
}

.header-search-form input::placeholder,
.main-footer input::placeholder {
    color: rgba(255,255,255,.72);
}

/* Common muted copy must remain readable on light surfaces. */
.taxonomy-muted,
.compare-muted,
.p9-muted,
.admin-muted,
.ui-field small,
.catalog-filter-group small,
.brand-filter-group small,
.category-filter-group small {
    color: var(--a11y-muted);
}

/* Errors use icon/text/border as well as color. */
[aria-invalid="true"] {
    border-color: #9f1f2f !important;
    background-image: linear-gradient(to right, rgba(159,31,47,.08), rgba(159,31,47,0));
}

.ui-field-error,
.error-text:not(:empty),
.contact-feedback.error,
.alert-error {
    font-weight: 650;
}

.ui-field-error::before,
.error-text:not(:empty)::before {
    content: "!";
    display: inline-grid;
    place-items: center;
    width: 1.1em;
    height: 1.1em;
    margin-right: .35em;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .72em;
    font-weight: 900;
    line-height: 1;
}

/* Visible difference states cannot rely on a background tint alone. */
.compare-different > .compare-row-heading {
    border-inline-start: 4px solid currentColor;
}

.compare-diff-badge,
.ui-badge,
.catalog-filter-pill {
    border-width: 1px;
    border-style: solid;
}

/* Interactive gallery items are keyboard-operable in Phase 35. */
#main-img[role="button"],
.cat-thumb[role="button"],
.prd-lb-thumb[role="button"] {
    border-radius: .35rem;
}

.cat-thumb[aria-pressed="true"],
.prd-lb-thumb[aria-current="true"] {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Text links inside authored/readable content remain identifiable without color. */
:where(.article-content, .page-content, .prd-content, .contact-privacy-note, .newsletter-privacy) a:not(.btn):not(.ui-affiliate-btn) {
    text-decoration: underline;
    text-decoration-thickness: .09em;
    text-underline-offset: .18em;
}

/* Make horizontally scrollable regions obvious to keyboard users. */
:where(.compare-table-wrap, .prd-table-scroll, .admin-mobile-table-scroll, .table-responsive)[tabindex="0"]:focus-visible {
    outline-offset: 4px !important;
}

/* System accessibility preferences. */
@media (prefers-reduced-motion: reduce) {
    html:focus-within { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

@media (prefers-contrast: more) {
    :root {
        --a11y-muted: #33473e;
    }
    .btn,
    .ui-affiliate-btn,
    input,
    select,
    textarea,
    .ui-product-card,
    .ui-category-card,
    .ui-brand-card {
        border-width: 2px !important;
    }
}

@media (forced-colors: active) {
    :where(a[href], button, input, select, textarea, summary, [role="button"]):focus-visible {
        outline: 3px solid Highlight !important;
        box-shadow: none !important;
    }
    .ui-badge,
    .catalog-filter-pill,
    .compare-diff-badge,
    .p9-availability {
        border: 1px solid CanvasText !important;
    }
}

/* ===== assets/css/brand-redesign.css ===== */
/* TopProductsReview — complete 2026 public UI/UX redesign layer.
   Loaded after the legacy compatibility bundle so existing functionality remains intact
   while the public experience is visually and structurally independent. */
:root {
    --tpr-navy: #0b1220;
    --tpr-navy-2: #131d31;
    --tpr-ink: #172033;
    --tpr-ink-soft: #526078;
    --tpr-blue: #2563eb;
    --tpr-blue-dark: #1746b8;
    --tpr-blue-soft: #eaf2ff;
    --tpr-sky: #f3f7ff;
    --tpr-amber: #f59e0b;
    --tpr-amber-soft: #fff7e6;
    --tpr-green: #0f8a62;
    --tpr-red: #c13e4b;
    --tpr-surface: #ffffff;
    --tpr-bg: #f7f9fc;
    --tpr-line: #e3e9f2;
    --tpr-line-strong: #d3dcea;
    --tpr-shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
    --tpr-shadow-md: 0 18px 50px rgba(15, 23, 42, .10);
    --tpr-shadow-lg: 0 30px 80px rgba(15, 23, 42, .14);
    --tpr-radius-sm: 8px;
    --tpr-radius: 14px;
    --tpr-radius-lg: 22px;
    --tpr-container: 1240px;

    /* Compatibility mappings for existing components. */
    --primary-green: var(--tpr-blue);
    --primary-green-light: #3b73ef;
    --primary-green-dark: var(--tpr-navy);
    --accent-yellow: var(--tpr-amber);
    --accent-yellow-light: #ffc150;
    --ink: var(--tpr-ink);
    --ink-soft: var(--tpr-ink-soft);
    --surface: var(--tpr-surface);
    --surface-muted: var(--tpr-bg);
    --surface-warm: #fbf7ef;
    --line: var(--tpr-line);
    --body-bg: var(--tpr-bg);
    --card-bg: var(--tpr-surface);
    --card-border: var(--tpr-line);
    --text-primary: var(--tpr-ink);
    --text-secondary: var(--tpr-ink-soft);
    --text-muted: #6f7d94;
    --border-color: var(--tpr-line);
    --shadow-sm: var(--tpr-shadow-sm);
    --shadow-md: var(--tpr-shadow-md);
    --shadow-lg: var(--tpr-shadow-lg);
    --radius-sm: var(--tpr-radius-sm);
    --radius-md: var(--tpr-radius);
    --radius-lg: var(--tpr-radius-lg);
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --container-width: var(--tpr-container);
    --header-height: 112px;
}

html { scroll-padding-top: 124px; background: var(--tpr-bg); }
body {
    margin: 0;
    color: var(--tpr-ink);
    background: var(--tpr-bg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}
body::before { display: none !important; }
main { min-height: 62vh; }
.container { width: min(calc(100% - 40px), var(--tpr-container)); max-width: none; }

h1,h2,h3,h4,h5,h6 {
    color: var(--tpr-ink);
    font-family: var(--font-heading);
    letter-spacing: -.035em;
}
a { color: var(--tpr-blue); }
a:hover { color: var(--tpr-blue-dark); }
::selection { color: #fff; background: var(--tpr-blue); }

/* Focus is intentionally obvious and consistent across the new brand. */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .34);
    outline-offset: 3px;
}
.skip-link {
    top: 10px; left: 12px; z-index: 10020;
    color: #fff; background: var(--tpr-blue); border-radius: 8px;
}

/* --------------------------------------------------------------------------
   Editorial trust strip + header
   -------------------------------------------------------------------------- */
.main-header.discovery-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
    padding: 0;
    color: var(--tpr-ink);
    background: rgba(255,255,255,.97);
    border: 0;
    border-bottom: 1px solid var(--tpr-line);
    box-shadow: 0 6px 24px rgba(15,23,42,.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.main-header.discovery-header.scrolled { background: rgba(255,255,255,.985); box-shadow: 0 10px 34px rgba(15,23,42,.08); }
.main-header.discovery-header::after { display: none; }
.review-trustbar { background: var(--tpr-navy); color: #dbe5f5; font-size: .73rem; }
.review-trustbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.review-trustbar-message { display: inline-flex; gap: 8px; align-items: center; font-weight: 650; letter-spacing: .01em; }
.review-trustbar-message i { color: var(--tpr-amber); }
.review-trustbar-links { display: flex; align-items: center; gap: 18px; }
.review-trustbar-links a { color: #b8c6dc; text-decoration: none; font-weight: 600; }
.review-trustbar-links a:hover { color: #fff; }
.header-shell { min-height: 77px; height: auto; gap: 24px; }
.logo.brand-logo {
    flex: 0 0 auto;
    width: 252px;
    height: 50px;
    overflow: visible;
    text-decoration: none;
}
.logo.brand-logo img { width: 252px; max-height: 50px; object-fit: contain; object-position: left center; transform: none; }
.logo.brand-logo:hover img { opacity: 1; transform: none; }
.main-nav.discovery-nav { margin: 0 auto; }
.main-nav.discovery-nav > ul { gap: 1px; }
.main-nav.discovery-nav ul li a {
    padding: 12px 10px;
    color: #475569;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
}
.main-nav.discovery-nav > ul > li > a::after { display: none; }
.main-nav.discovery-nav ul li a:hover,
.main-nav.discovery-nav ul li a.active { color: var(--tpr-blue); background: var(--tpr-blue-soft); }
.main-nav.discovery-nav .dropdown-menu {
    top: calc(100% + 9px);
    padding: 9px;
    color: var(--tpr-ink);
    background: #fff;
    border: 1px solid var(--tpr-line);
    border-radius: 12px;
    box-shadow: var(--tpr-shadow-md);
}
.main-nav.discovery-nav .dropdown-menu li a { color: #475569; }
.main-nav.discovery-nav .dropdown-menu li a i:first-child { color: var(--tpr-blue); }
.main-nav.discovery-nav .dropdown-menu li a:hover { color: var(--tpr-blue-dark); background: var(--tpr-blue-soft); }
.main-nav.discovery-nav .dropdown-menu .dropdown-featured { border-top-color: var(--tpr-line); }
.main-nav.discovery-nav .dropdown-menu .dropdown-featured a { color: var(--tpr-blue); }
.header-actions.discovery-actions { gap: 5px; }
.header-icon-link,.header-search-link,.header-account-button,.header-search-toggle {
    color: #475569 !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 9px !important;
    box-shadow: none !important;
}
.header-icon-link:hover,.header-search-toggle:hover,.header-account-button:hover {
    color: var(--tpr-blue) !important;
    background: var(--tpr-blue-soft) !important;
    border-color: #d9e6ff !important;
}
.header-account-button { min-height: 42px; padding: 0 10px; }
.header-compare-count,.header-favorite-count,.mobile-favorite-count {
    color: #fff !important; background: var(--tpr-blue) !important; border-color: #fff !important;
}
.header-account-panel {
    top: calc(100% + 10px);
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--tpr-line);
    border-radius: 12px;
    box-shadow: var(--tpr-shadow-md);
}
.header-account-panel a,.header-account-panel button { color: #475569 !important; }
.header-account-panel a:hover,.header-account-panel button:hover { color: var(--tpr-blue) !important; background: var(--tpr-blue-soft) !important; }
.header-search-panel {
    top: 100%;
    background: #fff;
    border-top: 1px solid var(--tpr-line);
    border-bottom: 1px solid var(--tpr-line);
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
}
.header-search-form { border-color: var(--tpr-line-strong) !important; background: var(--tpr-bg) !important; border-radius: 10px !important; }
.header-search-form:focus-within { border-color: var(--tpr-blue) !important; box-shadow: 0 0 0 3px rgba(37,99,235,.12) !important; }
.header-search-form button { background: var(--tpr-blue) !important; color: #fff !important; border-radius: 8px !important; }
.hamburger-menu span { background: var(--tpr-navy) !important; }

/* Breadcrumb is now a quiet editorial trail rather than a catalogue bar. */
.ui-breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--tpr-line); }
.ui-breadcrumbs { min-height: 45px; color: #7a879a; font-size: .78rem; }
.ui-breadcrumbs a { color: #64748b; }
.ui-breadcrumbs a:hover { color: var(--tpr-blue); }

/* --------------------------------------------------------------------------
   Core components
   -------------------------------------------------------------------------- */
.btn,.ui-button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 9px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: -.01em;
    box-shadow: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover,.ui-button:hover { transform: translateY(-1px); }
.btn-primary,.ui-button-primary {
    color: #fff !important;
    background: var(--tpr-blue) !important;
    border-color: var(--tpr-blue) !important;
}
.btn-primary:hover,.ui-button-primary:hover { background: var(--tpr-blue-dark) !important; border-color: var(--tpr-blue-dark) !important; box-shadow: 0 10px 24px rgba(37,99,235,.22); }
.btn-secondary,.btn-ghost,.ui-button-secondary {
    color: var(--tpr-ink) !important;
    background: #fff !important;
    border: 1px solid var(--tpr-line-strong) !important;
}
.btn-secondary:hover,.btn-ghost:hover,.ui-button-secondary:hover { color: var(--tpr-blue) !important; border-color: #a9c2f7 !important; background: var(--tpr-blue-soft) !important; }
.eyebrow {
    gap: 8px; color: var(--tpr-blue); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { width: 18px; height: 3px; border-radius: 3px; background: var(--tpr-amber); }

.ui-search-box {
    min-height: 60px;
    padding: 6px 7px 6px 16px;
    background: #fff;
    border: 1px solid #cfd9e8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
}
.ui-search-box:focus-within { border-color: var(--tpr-blue); box-shadow: 0 0 0 4px rgba(37,99,235,.10), 0 12px 30px rgba(15,23,42,.08); }
.ui-search-icon { color: var(--tpr-blue); }
.ui-search-box input { color: var(--tpr-ink); }
.ui-search-box button { min-height: 46px; padding-inline: 20px; color: #fff; background: var(--tpr-blue); border-radius: 8px; font-weight: 800; }
.ui-search-box button:hover { background: var(--tpr-blue-dark); }

.ui-badge { border-radius: 6px; font-weight: 800; }
.ui-badge-deal,.ui-badge-featured { color: #855000; background: var(--tpr-amber-soft); border-color: #f4d59b; }
.ui-badge-success { color: #086044; background: #e9f8f2; border-color: #c8ecdf; }
.ui-rating-stars-fill { color: var(--tpr-amber); }
.ui-price strong { color: var(--tpr-navy); }
.ui-affiliate-btn {
    min-height: 46px; padding-inline: 16px;
    color: #fff !important; background: var(--tpr-blue) !important; border-color: var(--tpr-blue) !important;
    border-radius: 8px; font-weight: 850;
}
.ui-affiliate-btn:hover { color:#fff !important; background: var(--tpr-blue-dark) !important; box-shadow: 0 10px 24px rgba(37,99,235,.20); transform: translateY(-1px); }
.ui-affiliate-store { opacity: .82; }

/* Product cards: editorial review cards, not manufacturer catalogue tiles. */
.ui-product-grid { gap: 20px; }
.ui-product-card {
    position: relative;
    overflow: visible;
    background: #fff;
    border: 1px solid var(--tpr-line);
    border-radius: var(--tpr-radius);
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ui-product-card:hover { transform: translateY(-4px); border-color: #cbd8ec; box-shadow: var(--tpr-shadow-md); }
.ui-product-card-link { color: inherit; border-radius: inherit; overflow: hidden; }
.ui-product-media {
    aspect-ratio: 4 / 3;
    padding: 18px;
    background: linear-gradient(145deg,#fbfcff,#f2f6fb);
    border-bottom: 1px solid var(--tpr-line);
}
.ui-product-media img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s ease; }
.ui-product-card:hover .ui-product-media img { transform: scale(1.025); }
.ui-product-badge,.ui-product-deal {
    top: 12px; border-radius: 6px; font-size: .64rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase;
}
.ui-product-badge { color: var(--tpr-blue-dark); background: #fff; border: 1px solid #cbdaf6; box-shadow: 0 3px 10px rgba(15,23,42,.05); }
.ui-product-deal { color: #7b4b00; background: #fff1cc; border: 1px solid #f4d082; }
.ui-product-body { gap: 11px; padding: 16px 17px 17px; }
.ui-product-heading strong { color: var(--tpr-ink); font-family: var(--font-heading); font-size: .98rem; line-height: 1.35; letter-spacing: -.02em; }
.ui-product-heading small { color: #7a8798; font-size: .69rem; }
.ui-product-taxonomy { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; color: #708096; font-size: .68rem; font-weight: 700; }
.ui-product-taxonomy span { display: inline-flex; align-items: center; gap: 5px; }
.ui-product-taxonomy span + span::before { content: '•'; color: #b5bfcd; margin-right: 2px; }
.ui-product-snippet { color: #5d6b80; background: var(--tpr-bg); border: 1px solid var(--tpr-line); border-radius: 8px; }
.ui-product-snippet i { color: var(--tpr-blue); }
.ui-product-specs { display: none; }
.ui-product-commerce { min-height: 31px; padding-top: 10px; border-top: 1px solid var(--tpr-line); }
.ui-product-card-cta { margin-top: 0; padding-top: 11px; color: var(--tpr-blue); border-top: 1px solid var(--tpr-line); font-weight: 800; }
.ui-product-card-cta i { transition: transform .2s ease; }
.ui-product-card:hover .ui-product-card-cta i { transform: translateX(3px); }
.favorite-control,.compare-control,.ui-product-card .favorite-control,.ui-product-card .compare-control { border-radius: 8px !important; box-shadow: 0 4px 14px rgba(15,23,42,.08) !important; }

.ui-category-card {
    min-height: 126px;
    padding: 17px;
    background: #fff;
    border: 1px solid var(--tpr-line);
    border-radius: 12px;
    box-shadow: none;
}
.ui-category-card:hover { border-color: #b9cdf5; background: #fbfdff; box-shadow: var(--tpr-shadow-sm); transform: translateY(-2px); }
.ui-category-icon { width: 42px; height: 42px; color: var(--tpr-blue); background: var(--tpr-blue-soft); border-radius: 10px; }
.ui-category-content strong { color: var(--tpr-ink); }
.ui-category-count { color: #7a8799; }
.ui-category-arrow { color: var(--tpr-blue); }
.ui-brand-card { background:#fff; border:1px solid var(--tpr-line); border-radius:12px; box-shadow:none; }
.ui-brand-card:hover { border-color:#b9cdf5; box-shadow:var(--tpr-shadow-sm); }
.ui-brand-logo { background:var(--tpr-bg); border-color:var(--tpr-line); }

.ui-alert { border-radius: 10px; box-shadow: none; }
.ui-pagination { gap: 9px; }
.ui-page-number,.ui-page-nav { border-radius: 8px; border-color: var(--tpr-line-strong); background:#fff; }
.ui-page-number.active { color:#fff; background:var(--tpr-blue); border-color:var(--tpr-blue); }
.ui-field input,.ui-field select,.ui-field textarea,
.form-control,input[type="text"],input[type="email"],input[type="password"],input[type="url"],input[type="search"],input[type="number"],select,textarea {
    border-radius: 8px;
    border-color: var(--tpr-line-strong);
}
.ui-field input:focus,.ui-field select:focus,.ui-field textarea:focus,.form-control:focus,
input:focus,select:focus,textarea:focus { border-color:var(--tpr-blue); box-shadow:0 0 0 3px rgba(37,99,235,.10); }

/* --------------------------------------------------------------------------
   Listing/search/category/brand surfaces
   -------------------------------------------------------------------------- */
.search-hero,.catalog-hero,.category-hero,.brand-hero,.articles-hero,.page-hero,.account-hero {
    color: var(--tpr-ink);
    background: linear-gradient(135deg,#fff 0%,#f2f6ff 100%) !important;
    border-bottom: 1px solid var(--tpr-line);
}
.search-hero h1,.catalog-hero h1,.category-hero h1,.brand-hero h1,.articles-hero h1,.page-hero h1,.account-hero h1 { color:var(--tpr-navy) !important; }
.catalog-filter-panel,.filter-sidebar,.search-filter-panel,.category-sidebar,.account-sidebar {
    background:#fff !important; border:1px solid var(--tpr-line) !important; border-radius:12px !important; box-shadow:none !important;
}
.catalog-toolbar,.search-toolbar,.category-toolbar { background:#fff !important; border-color:var(--tpr-line) !important; border-radius:10px !important; }
.catalogue-product-card,.product-card { border-color:var(--tpr-line) !important; border-radius:var(--tpr-radius) !important; box-shadow:none !important; }

/* --------------------------------------------------------------------------
   Product detail: review-first two-column editorial layout
   -------------------------------------------------------------------------- */
.prd-nav-bar { background:#fff !important; border-bottom:1px solid var(--tpr-line) !important; }
.prd-nav-link { color:#68778e !important; font-size:.76rem !important; }
.prd-nav-link:hover { color:var(--tpr-blue) !important; }
.cat-product-header {
    padding: 30px 0 42px !important;
    background: #fff !important;
    border-bottom: 1px solid var(--tpr-line);
}
.cat-product-header > .container {
    display:grid !important;
    grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr) !important;
    gap:44px !important;
    align-items:start !important;
}
.cat-product-gallery,.cat-product-info { width:auto !important; max-width:none !important; }
.cat-product-gallery { position:sticky; top:130px; }
.cat-main-image {
    min-height:480px !important;
    background:linear-gradient(145deg,#fbfcff,#f1f5fb) !important;
    border:1px solid var(--tpr-line) !important;
    border-radius:16px !important;
    box-shadow:none !important;
}
.cat-main-image img { max-height:460px !important; object-fit:contain; mix-blend-mode:multiply; }
.cat-thumbnail-strip { gap:9px !important; margin-top:10px !important; }
.cat-thumb { width:70px !important; height:70px !important; border:1px solid var(--tpr-line) !important; border-radius:9px !important; background:#fff !important; }
.cat-thumb.active { border-color:var(--tpr-blue) !important; box-shadow:0 0 0 2px rgba(37,99,235,.12) !important; }
.cat-product-info { padding-top:2px !important; }
.prd-breadcrumb { color:#7b899c !important; font-size:.76rem !important; }
.prd-breadcrumb a { color:#64748b !important; }
.cat-product-info h1 { margin:.5rem 0 .6rem !important; color:var(--tpr-navy) !important; font-size:clamp(2rem,3.4vw,3.3rem) !important; line-height:1.06 !important; letter-spacing:-.045em !important; }
.prd-review-label { display:inline-flex; align-items:center; gap:7px; margin-bottom:4px; color:var(--tpr-blue); font-size:.72rem; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
.prd-review-label i { color:var(--tpr-amber); }
.prd-brand-link { color:#526078 !important; background:transparent !important; border:0 !important; padding:0 !important; border-radius:0 !important; }
.prd-brand-link i:first-child { color:var(--tpr-blue); }
.prd-core-meta { gap:7px !important; margin:15px 0 !important; }
.prd-core-badge { color:#5f6d81 !important; background:#f7f9fc !important; border:1px solid var(--tpr-line) !important; border-radius:6px !important; }
.prd-core-featured { color:#7b4b00 !important; background:var(--tpr-amber-soft) !important; border-color:#f1d69f !important; }
.prd-short-description { color:#526078 !important; font-size:1rem !important; line-height:1.72 !important; }
.p9-purchase-summary {
    display:grid !important; grid-template-columns:1fr 1fr !important; gap:10px !important;
    padding:0 !important; margin:22px 0 18px !important; background:transparent !important; border:0 !important;
}
.p9-rating-summary,.p9-best-summary {
    min-height:108px; padding:14px !important; background:#fff !important; border:1px solid var(--tpr-line) !important; border-radius:10px !important;
}
.p9-rating-summary:hover { border-color:#b9cdf5 !important; background:var(--tpr-sky) !important; }
.p9-summary-label,.p9-kicker { color:var(--tpr-blue) !important; }
.prd-actions { display:flex !important; flex-wrap:wrap !important; gap:9px !important; padding-top:16px !important; border-top:1px solid var(--tpr-line) !important; }
.prd-btn-quote { color:var(--tpr-ink) !important; background:#fff !important; border:1px solid var(--tpr-line-strong) !important; border-radius:8px !important; }

.product-insights-section { background:#f5f8ff !important; border-block:1px solid #dfe8fb !important; }
.product-insights-card,.product-insight-card,.product-score-card { border-radius:12px !important; border-color:#dce6f7 !important; box-shadow:none !important; }
.product-insight-badge { border-radius:6px !important; }

.p9-offers-section { background:#fff !important; border-bottom:1px solid var(--tpr-line); }
.p9-offer-table-wrap { overflow:hidden; border:1px solid var(--tpr-line) !important; border-radius:12px !important; box-shadow:none !important; }
.p9-offer-table th { color:#65748a !important; background:#f7f9fc !important; border-color:var(--tpr-line) !important; }
.p9-offer-table td { border-color:var(--tpr-line) !important; }
.p9-offer-table tr.is-best-offer td { background:#f8fbff !important; }
.price-alert-panel,.price-history-card { border-color:var(--tpr-line) !important; border-radius:12px !important; background:#fff !important; }
.prd-editorial-overview { background:var(--tpr-bg) !important; }
.prd-overview-copy,.prd-verdict-card { border-color:var(--tpr-line) !important; border-radius:12px !important; box-shadow:none !important; }
.prd-pros-card { border-top:3px solid var(--tpr-green) !important; }
.prd-cons-card { border-top:3px solid var(--tpr-red) !important; }
.prd-catalogue-detail { background:#fff !important; }
.prd-catalogue-block { border-color:var(--tpr-line) !important; }
.prd-catalogue-title { color:var(--tpr-navy) !important; }
.prd-spec-table,.prd-data-table { border-color:var(--tpr-line) !important; }
.prd-spec-table th,.prd-data-table th { background:#f7f9fc !important; }
.review-shell,.reviews-shell,.review-card { border-color:var(--tpr-line) !important; border-radius:12px !important; box-shadow:none !important; }

/* Comparison and account surfaces */
.compare-bar { color:#fff !important; background:var(--tpr-navy) !important; border-top-color:#24314a !important; }
.compare-bar-action { color:#fff !important; background:var(--tpr-blue) !important; border-radius:8px !important; }
.comparison-table-wrap,.comparison-shell { border-color:var(--tpr-line) !important; border-radius:12px !important; box-shadow:none !important; }

/* --------------------------------------------------------------------------
   Footer — editorial publication rather than corporate manufacturer footer
   -------------------------------------------------------------------------- */
.main-footer {
    padding: 0 !important;
    color: #c6d1e2;
    background: var(--tpr-navy) !important;
    border-top: 0 !important;
}
.newsletter-footer {
    margin:0 !important; padding:38px 0 !important;
    display:grid !important; grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr) !important; gap:44px !important;
    border-bottom:1px solid rgba(255,255,255,.11) !important;
}
.newsletter-copy h3 { color:#fff !important; }
.newsletter-copy p,.newsletter-privacy { color:#95a6be !important; }
.newsletter-form { background:#fff !important; border-radius:10px !important; padding:5px !important; }
.newsletter-form input { border:0 !important; box-shadow:none !important; }
.newsletter-form button { background:var(--tpr-blue) !important; border-radius:7px !important; color:#fff !important; }
.footer-topline { padding:46px 0 34px !important; border-bottom:1px solid rgba(255,255,255,.10) !important; }
.footer-topline h2 { color:#fff !important; max-width:680px; }
.footer-cta { color:#fff !important; background:var(--tpr-blue) !important; border-radius:8px !important; }
.footer-grid { padding:42px 0 !important; gap:52px !important; }
.footer-brand { max-width:360px; }
.footer-logo { display:inline-flex; width:270px !important; height:auto !important; overflow:visible !important; padding:7px; background:#fff; border-radius:10px; }
.footer-logo img { width:255px !important; height:auto !important; transform:none !important; }
.footer-brand p { color:#9baac0 !important; }
.footer-email,.footer-social-links a { color:#c6d1e2 !important; }
.footer-social-links a { background:rgba(255,255,255,.07) !important; border:1px solid rgba(255,255,255,.10) !important; border-radius:8px !important; }
.footer-social-links a:hover { color:#fff !important; background:var(--tpr-blue) !important; }
.footer-menu-column h3,.footer-menu-column strong { color:#fff !important; }
.footer-menu-column a { color:#9baac0 !important; }
.footer-menu-column a:hover { color:#fff !important; }
.footer-bottom { color:#8394ad !important; border-top:1px solid rgba(255,255,255,.09) !important; }
.footer-signature { color:#b6c4d7 !important; }
.footer-editorial-note { display:flex; gap:8px; align-items:flex-start; max-width:650px; color:#8fa0b8; font-size:.72rem; line-height:1.55; }
.footer-editorial-note i { margin-top:3px; color:var(--tpr-amber); }

/* Editorial/static pages */
.editorial-page-hero { padding:72px 0 54px; background:linear-gradient(135deg,#fff 0%,#edf3ff 100%); border-bottom:1px solid var(--tpr-line); }
.editorial-page-hero .editorial-kicker { color:var(--tpr-blue); font-size:.72rem; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.editorial-page-hero h1 { max-width:850px; margin:12px 0 14px; font-size:clamp(2.5rem,5vw,4.8rem); line-height:1.03; }
.editorial-page-hero p { max-width:760px; color:var(--tpr-ink-soft); font-size:1.08rem; }
.editorial-content { padding:60px 0 80px; }
.editorial-content-grid { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:55px; align-items:start; }
.editorial-prose { max-width:780px; }
.editorial-prose h2 { margin-top:2.2rem; font-size:1.7rem; }
.editorial-prose h3 { margin-top:1.7rem; }
.editorial-prose p,.editorial-prose li { color:#536177; }
.editorial-principles { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:32px 0; }
.editorial-principle { padding:20px; background:#fff; border:1px solid var(--tpr-line); border-radius:12px; }
.editorial-principle i { display:grid; place-items:center; width:38px; height:38px; margin-bottom:14px; color:var(--tpr-blue); background:var(--tpr-blue-soft); border-radius:9px; }
.editorial-principle h3 { margin:0 0 7px; font-size:1rem; }
.editorial-principle p { margin:0; font-size:.85rem; }
.editorial-sidebar-card { position:sticky; top:135px; padding:22px; background:#fff; border:1px solid var(--tpr-line); border-radius:12px; }
.editorial-sidebar-card h3 { margin-top:0; }
.editorial-sidebar-card a { display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--tpr-line); color:#526078; text-decoration:none; font-weight:700; font-size:.82rem; }
.editorial-sidebar-card a:last-child { border-bottom:0; }
.editorial-sidebar-card a:hover { color:var(--tpr-blue); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1120px) {
    .logo.brand-logo { width:215px; }
    .logo.brand-logo img { width:215px; }
    .main-nav.discovery-nav ul li a { padding-inline:8px; font-size:.77rem; }
    .cat-product-header > .container { gap:28px !important; }
}
@media (max-width: 980px) {
    :root { --header-height: 104px; }
    .review-trustbar-links { display:none; }
    .review-trustbar-inner { justify-content:center; }
    .header-shell { min-height:70px; }
    .logo.brand-logo { width:215px; }
    .main-nav.discovery-nav {
        top:104px !important;
        color:var(--tpr-ink) !important;
        background:#fff !important;
        border-top:1px solid var(--tpr-line) !important;
        box-shadow:var(--tpr-shadow-lg) !important;
    }
    .main-nav.discovery-nav ul li a { color:#475569 !important; }
    .main-nav.discovery-nav ul li a:hover,.main-nav.discovery-nav ul li a.active { color:var(--tpr-blue) !important; background:var(--tpr-blue-soft) !important; }
    .mobile-nav-utility { border-top-color:var(--tpr-line) !important; }
    .cat-product-header > .container { grid-template-columns:1fr !important; }
    .cat-product-gallery { position:static; }
    .cat-main-image { min-height:380px !important; }
    .editorial-content-grid { grid-template-columns:1fr; }
    .editorial-sidebar-card { position:static; }
    .newsletter-footer { grid-template-columns:1fr !important; gap:22px !important; }
}
@media (max-width: 720px) {
    .container { width:min(calc(100% - 28px), var(--tpr-container)); }
    .review-trustbar-message { font-size:.68rem; text-align:center; }
    .logo.brand-logo { width:194px; height:43px; }
    .logo.brand-logo img { width:194px; max-height:43px; }
    .header-action-text { display:none; }
    .header-actions.discovery-actions { gap:1px; }
    .cat-product-header { padding-top:20px !important; }
    .cat-main-image { min-height:310px !important; }
    .cat-product-info h1 { font-size:2.1rem !important; }
    .p9-purchase-summary { grid-template-columns:1fr !important; }
    .editorial-principles { grid-template-columns:1fr; }
    .editorial-page-hero { padding:48px 0 38px; }
    .editorial-page-hero h1 { font-size:2.5rem; }
    .footer-grid { grid-template-columns:1fr !important; }
    .footer-topline { align-items:flex-start !important; gap:20px !important; }
}
@media (max-width: 480px) {
    .review-trustbar { display:none; }
    :root { --header-height:70px; }
    .main-nav.discovery-nav { top:70px !important; }
    .logo.brand-logo { width:174px; }
    .logo.brand-logo img { width:174px; }
    .header-search-toggle,.header-compare-link { display:none !important; }
    .ui-search-box { grid-template-columns:auto minmax(0,1fr); padding:8px 10px; }
    .ui-search-box button { grid-column:1 / -1; width:100%; }
    .cat-main-image { min-height:260px !important; }
    .cat-product-info h1 { font-size:1.8rem !important; }
}

@media (prefers-reduced-motion: reduce) {
    .ui-product-card,.ui-product-media img,.btn,.ui-button { transition:none !important; }
}
