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

        :root {
            --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
            --font-heading: 'Sora', system-ui, sans-serif;
            --primary-red: #c8102e;
            --primary-blue: #003366;
            --primary-blue-dark: #002244;
            --primary-blue-light: #2b5f9b;
            --light-blue: #e8f3fb;
            --header-height: 85px;
            --text-gray: #4a4a4a;
            --light-gray: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-gray);
            line-height: 1.6;
            background: var(--light-gray);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

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

        h1, h2, h3, h4, h5, h6,
        .section-header small,
        .section-tag,
        .about-tag,
        .hero-badge,
        .promo-card-copy h2,
        .site-footer-nav-title,
        .site-footer-contact-item h4,
        nav a {
            font-family: var(--font-heading);
            letter-spacing: -0.02em;
        }

        button, input, select, textarea {
            font-family: var(--font-body);
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-bottom {
            margin: 0 auto;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .site-nav-desktop {
            flex: 1;
            display: flex;
            justify-content: center;
            min-width: 0;
        }

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

        .logo img {
            height: auto;
            width: auto;
            max-height: 55px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            background: #fff;
            color: var(--primary-blue);
            font-size: 1.15rem;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
        }

        .mobile-menu-toggle:hover {
            background: #f5f8fc;
            color: var(--primary-red);
            border-color: #d7dde5;
        }

        .mobile-nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 20, 40, 0.55);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.32s ease, visibility 0.32s ease;
            z-index: 1190;
        }

        body.mobile-nav-open .mobile-nav-backdrop {
            opacity: 1;
            visibility: visible;
        }

        body.mobile-nav-open {
            overflow: hidden;
        }

        .mobile-drawer {
            display: none;
        }

        .mobile-drawer-header,
        .mobile-drawer-footer {
            display: none;
        }

        .mobile-drawer-close {
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 10px;
            background: #f5f8fc;
            color: var(--primary-blue);
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
        }

        .mobile-drawer-close:hover {
            background: var(--primary-red);
            color: #fff;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-blue);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .header-contact i {
            color: var(--primary-red);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: var(--primary-blue);
            font-size: 1rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary-red);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        nav a:hover, nav a.active {
            color: var(--primary-red);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s;
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        .nav-dropdown-toggle {
            background: none;
            border: none;
            font-family: var(--font-heading);
            color: var(--text-gray);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0 0 5px;
            letter-spacing: -0.02em;
            transition: color 0.3s;
            position: relative;
        }

        .nav-dropdown-toggle i {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .nav-dropdown-toggle:hover,
        .has-mega-menu.is-open .nav-dropdown-toggle,
        .has-nav-dropdown.is-open .nav-dropdown-toggle {
            color: var(--primary-red);
        }

        .has-mega-menu.is-open .nav-dropdown-toggle i,
        .has-nav-dropdown.is-open .nav-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .has-mega-menu {
            position: static;
        }

        .has-nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            min-width: 230px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
            border: 1px solid #eef2f6;
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(8px);
            transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
            z-index: 1002;
        }

        .has-nav-dropdown.is-open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 12px 16px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 600;
            font-size: 0.92rem;
            transition: background 0.25s ease, color 0.25s ease;
        }

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

        .nav-dropdown-menu a:hover {
            background: #f5f8fc;
            color: var(--primary-blue);
        }

        .services-dropdown-menu {
            min-width: 300px;
        }

        .services-dropdown-menu a {
            white-space: nowrap;
        }

        .resources-dropdown-menu {
            min-width: 300px;
        }

        .resources-dropdown-menu a {
            white-space: nowrap;
        }

        .mega-menu {
            position: fixed;
            left: 0;
            right: 0;
            top: var(--header-height);
            background: #fff;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
            border-top: 1px solid #eef2f6;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
            z-index: 999;
            padding: 28px 0 34px;
        }

        .has-mega-menu.is-open .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-inner {
            max-width: none;
            width: 100%;
            margin: 0;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .mega-menu-categories h3,
        .mega-menu-trending h3 {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 1px solid #eef2f6;
        }

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

        .mega-category-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            text-decoration: none;
            padding: 10px;
            border-radius: 12px;
            transition: background 0.25s ease;
        }

        .mega-category-item:hover {
            background: #f5f8fc;
        }

        .mega-category-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 50%;
            background: #eaf2fb;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .mega-category-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mega-category-text strong {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1a202c;
            line-height: 1.3;
        }

        .mega-category-text small {
            font-size: 0.82rem;
            color: #6b7280;
            line-height: 1.45;
        }

        .trending-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .trending-item {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            padding: 10px;
            border-radius: 12px;
            transition: background 0.25s ease;
        }

        .trending-item:hover {
            background: #f5f8fc;
        }

        .trending-thumb {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 12px;
            background: #f0f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 8px;
        }

        .trending-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .trending-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .trending-text small {
            font-size: 0.78rem;
            font-weight: 600;
            color: #2b8cbe;
            text-transform: capitalize;
        }

        .trending-text strong {
            font-size: 0.92rem;
            font-weight: 700;
            color: #1a202c;
            line-height: 1.4;
        }

        .language-switcher {
            position: relative;
        }

        .language-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f5f7fa;
            border: 1px solid #e3e8ef;
            border-radius: 999px;
            padding: 8px 12px;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: border-color 0.25s, background 0.25s, color 0.25s;
        }

        .language-toggle:hover,
        .language-switcher.is-open .language-toggle {
            border-color: var(--primary-blue);
            background: #fff;
        }

        .language-chevron {
            font-size: 0.65rem;
            transition: transform 0.25s;
        }

        .language-switcher.is-open .language-chevron {
            transform: rotate(180deg);
        }

        .language-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 150px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            list-style: none;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
            z-index: 1001;
        }

        .language-switcher.is-open .language-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            text-decoration: none;
            border: none;
            background: transparent;
            text-align: left;
            padding: 10px 16px;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-gray);
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        .language-menu a:hover,
        .language-menu a.active {
            background: #f5f8fc;
            color: var(--primary-blue);
        }

        .language-flag {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
        }

        .language-flag--en {
            background: linear-gradient(180deg, #012169 0 33%, #fff 33% 66%, #c8102e 66%);
        }

        .language-flag--hi {
            background: linear-gradient(180deg, #ff9933 0 33%, #fff 33% 66%, #138808 66%);
        }

        .language-flag--fr {
            background: linear-gradient(90deg, #002395 0 33%, #fff 33% 66%, #ed2939 66%);
        }

        @media (min-width: 992px) {
            .has-mega-menu:hover .mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .has-nav-dropdown:hover .nav-dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }

        @media (max-width: 991px) {
            .mega-menu-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .mega-menu-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 576px) {
            .mega-menu-grid {
                grid-template-columns: 1fr;
            }

            .language-toggle .language-code {
                display: none;
            }
        }

        .search-toggle {
            background: none;
            border: none;
            color: var(--primary-blue);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            transition: color 0.3s;
        }

        .search-toggle:hover {
            color: var(--primary-red);
        }

        .search-dropdown {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            z-index: 1100;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
            padding: 22px 30px;
        }

        .search-dropdown.is-open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .search-dropdown-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .search-dropdown-form {
            flex: 1;
        }

        .search-dropdown-field {
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid #d7dde5;
            border-radius: 50px;
            padding: 14px 22px;
            background: #fff;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .search-dropdown-field:focus-within {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.08);
        }

        .search-dropdown-field input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            color: var(--text-gray);
            background: transparent;
        }

        .search-dropdown-field input::placeholder {
            color: #9aa3ad;
        }

        .search-dropdown-field i {
            color: #9aa3ad;
            font-size: 1rem;
        }

        .search-dropdown-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            transition: color 0.3s;
        }

        .search-dropdown-close:hover {
            color: var(--primary-red);
        }

        body.search-open {
            overflow: hidden;
        }

        @media (max-width: 576px) {
            .search-dropdown {
                padding: 16px 18px;
            }

            .search-dropdown-inner {
                gap: 14px;
            }

            .search-dropdown-field {
                padding: 12px 16px;
            }
        }

        .account-icon {
            width: 34px;
            height: 34px;
            background: transparent;
            color: var(--primary-blue);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.05rem;
            transition: color 0.25s ease, background 0.25s ease;
        }

        .account-icon:hover {
            background: #f5f8fc;
            color: var(--primary-red);
        }

        /* Home Promo Showcase */
        .home-promo {
            background: var(--light-gray);
            padding: 28px 30px 36px;
        }

        .home-promo-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: auto auto;
            gap: 18px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .promo-card {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            min-height: 240px;
            border: 1px solid rgba(0, 51, 102, 0.08);
            box-shadow: 0 6px 22px rgba(0, 51, 102, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .promo-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 32px rgba(0, 51, 102, 0.1);
            border-color: rgba(43, 95, 155, 0.16);
        }

        .promo-card--featured {
            grid-column: 1;
            grid-row: 1;
            min-height: 300px;
        }

        .promo-card--compact {
            grid-column: 2;
            grid-row: 1;
        }

        .promo-card--wide {
            grid-column: 1;
            grid-row: 2;
            min-height: 260px;
        }

        .promo-card--medium {
            grid-column: 2;
            grid-row: 2;
        }

        .promo-tone-aqua {
            background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
        }

        .promo-tone-mint {
            background: linear-gradient(135deg, #ffffff 0%, #f3f7fb 100%);
        }

        .promo-tone-sunset {
            background: linear-gradient(135deg, var(--light-blue) 0%, #f5f8fb 100%);
        }

        .promo-tone-sky {
            background: linear-gradient(135deg, #ffffff 0%, #eef4fa 100%);
        }

        .promo-card-shape {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .promo-card-shape--yellow {
            width: 120px;
            height: 120px;
            top: -30px;
            left: -20px;
            background: var(--primary-blue-light);
            opacity: 0.1;
        }

        .promo-card-shape--pink {
            width: 90px;
            height: 90px;
            top: -20px;
            right: -15px;
            background: var(--primary-red);
            opacity: 0.08;
        }

        .promo-card-shape--navy {
            width: 140px;
            height: 140px;
            bottom: -40px;
            right: 28%;
            background: var(--primary-blue);
            opacity: 0.07;
        }

        .promo-card-shape--rose {
            width: 110px;
            height: 110px;
            bottom: -25px;
            right: -20px;
            background: var(--primary-blue-light);
            opacity: 0.09;
        }

        .promo-card-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            height: 100%;
            padding: 28px 26px;
        }

        .promo-card-inner--stack {
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
        }

        .promo-card-copy {
            flex: 1;
            max-width: 420px;
        }

        .promo-card--featured .promo-card-copy {
            max-width: 380px;
        }

        .promo-card-copy h2 {
            font-family: var(--font-heading);
            font-size: 1.55rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--primary-blue);
            margin: 0 0 12px;
        }

        .promo-card--compact .promo-card-copy h2,
        .promo-card--medium .promo-card-copy h2 {
            font-size: 1.2rem;
        }

        .promo-card-copy p {
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0 0 16px;
        }

        .promo-card-link {
            display: inline-block;
            color: var(--primary-blue-light);
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.25s ease;
        }

        .promo-card-link:hover {
            color: var(--primary-red);
        }

        .promo-card-visual {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .promo-photo-blob {
            width: 220px;
            height: 220px;
            border-radius: 58% 42% 53% 47% / 45% 52% 48% 55%;
            overflow: hidden;
            box-shadow: 0 10px 24px rgba(0, 51, 102, 0.12);
            background: #fff;
            border: 3px solid rgba(255, 255, 255, 0.8);
        }

        .promo-card--featured .promo-photo-blob {
            width: 250px;
            height: 250px;
        }

        .promo-photo-blob img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .promo-photo-blob--dark {
            border: 4px solid rgba(255, 255, 255, 0.65);
        }

        .promo-brand-badge {
            position: absolute;
            right: 18px;
            bottom: 18px;
            background: var(--primary-blue);
            color: #fff;
            font-weight: 800;
            font-size: 0.82rem;
            letter-spacing: 0.06em;
            padding: 8px 14px;
            border-radius: 999px;
            box-shadow: 0 4px 14px rgba(0, 51, 102, 0.18);
        }

        .promo-card--featured .promo-card-visual {
            position: relative;
        }

        .promo-icon-wrap {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.85);
            color: var(--primary-blue);
            font-size: 2rem;
            box-shadow: 0 6px 18px rgba(0, 51, 102, 0.08);
            border: 1px solid rgba(0, 51, 102, 0.08);
        }

        .promo-icon-wrap--docs {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-blue-light);
        }

        .btn-primary {
            background: var(--primary-red);
            color: white;
            padding: 16px 45px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 6px 25px rgba(200,16,46,0.4);
        }

        .btn-primary:hover {
            background: #a00d25;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(200,16,46,0.5);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 16px 45px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

        /* Featured Products Enhanced */
        .featured-section {
            background: var(--light-gray);
        }

        .featured-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 0 auto 40px;
            padding: 0 30px;
            max-width: 1400px;
        }

        .product-search {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            border: 2px solid #e8ecf1;
            border-radius: 30px;
            padding: 12px 22px;
            flex: 1;
            max-width: 480px;
            transition: border-color 0.3s;
        }

        .product-search:focus-within {
            border-color: var(--primary-blue);
        }

        .product-search i {
            color: #aaa;
        }

        .product-search input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 0.95rem;
            background: transparent;
        }

        .product-count {
            font-size: 0.9rem;
            color: #888;
            font-weight: 600;
        }

        .product-count strong {
            color: var(--primary-blue);
        }

        .featured-toolbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .product-sort {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-sort-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #666;
            white-space: nowrap;
        }

        .product-sort-field {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .product-sort-field select {
            appearance: none;
            -webkit-appearance: none;
            border: 2px solid #e8ecf1;
            border-radius: 30px;
            background: #fff;
            color: var(--primary-blue);
            font-size: 0.92rem;
            font-weight: 600;
            padding: 11px 42px 11px 18px;
            min-width: 210px;
            cursor: pointer;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .product-sort-field select:hover,
        .product-sort-field select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.08);
        }

        .product-sort-field i {
            position: absolute;
            right: 16px;
            pointer-events: none;
            color: var(--primary-blue);
            font-size: 0.75rem;
        }

        .featured-section .products-grid {
            margin: 0 auto;
            padding: 0 30px;
            max-width: 1400px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .featured-section .product-item {
            display: flex;
            flex-direction: column;
        }

        .featured-section .product-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .featured-section .product-item:hover .product-card {
            transform: translateY(-6px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
        }

        .featured-section .product-image {
            position: relative;
            height: 270px;
            background: #f5f7fa;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .featured-section .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.35s ease;
        }

        .featured-section .product-item:hover .product-image img {
            transform: scale(1.04);
        }

        .featured-section .product-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0, 51, 102, 0.45);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .featured-section .product-item:hover .product-overlay {
            opacity: 1;
        }

        .featured-section .product-body {
            padding: 22px 22px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 10px;
        }

        .featured-section .product-category {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #e67e22;
            line-height: 1.2;
        }

        .featured-section .product-title {
            font-size: 0.88rem;
            font-weight: 600;
            color: #1a202c;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.1em;
            margin: 0;
        }

        .featured-section .product-explore-btn {
            border: none;
            border-radius: 999px;
            background: #ffffff;
            color: var(--primary-blue);
            cursor: pointer;
            padding: 12px 24px;
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transition: background 0.3s, color 0.3s, transform 0.3s;
        }

        .featured-section .product-explore-btn:hover {
            background: var(--primary-red);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .products-cta {
            text-align: center;
            margin-top: 45px;
            padding: 0 30px;
        }

        .btn-load-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-blue);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 25px rgba(0,51,102,0.3);
        }

        .btn-load-more:hover {
            background: var(--primary-red);
            transform: translateY(-2px);
        }

        .btn-load-more.hidden {
            display: none;
        }

        .no-products-msg {
            display: none;
            text-align: center;
            padding: 60px 30px;
            color: #888;
            font-size: 1.1rem;
            grid-column: 1 / -1;
        }

        .no-products-msg.show {
            display: block;
        }

        .no-products-msg i {
            font-size: 2rem;
            display: block;
            margin-bottom: 15px;
            color: #ccc;
        }

        .cart-link {
            color: var(--primary-blue);
            font-size: 1.3rem;
        }

        .products-loading {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px;
            color: #888;
        }

        .products-loading i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            display: block;
        }

        /* Categories Slider */
        .section {
            padding: 70px 0;
        }

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

        .section-header small {
            color: var(--primary-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .section-header h2 {
            font-size: 2.6rem;
            color: var(--primary-blue);
            margin: 12px 0 15px;
            font-weight: 800;
        }

        .section-header p {
            color: #777;
            font-size: 1.1rem;
        }

        .categories-section {
            background: white;
        }

        .category-slider-wrapper {
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,51,102,0.3);
        }

        .slider-nav:hover {
            background: var(--primary-red);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        .category-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 30px;
            padding-top: 30px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .category-slider::-webkit-scrollbar {
            display: none;
        }

        .category-item {
            min-width: 280px;
            flex-shrink: 0;
        }

        .category-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }

        .category-item:hover .category-card {
            transform: translateY(-12px);
            border-color: var(--primary-blue);
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
        }

        .category-image {
            height: 280px;
            background: var(--light-gray);
            overflow: hidden;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .category-name {
            margin-top: 14px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--primary-blue);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--primary-blue);
            width: 35px;
            border-radius: 10px;
        }

        /* About Section */
        .about-section {
            background: #fff;
            padding: 90px 0;
        }

        .about-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .about-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.75fr);
            gap: 48px 40px;
            align-items: start;
        }

        .about-section .about-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--primary-blue);
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .about-tag-line {
            width: 3px;
            height: 22px;
            border-radius: 2px;
            background: var(--primary-blue-light);
            flex-shrink: 0;
        }

        .about-copy h2 {
            font-size: clamp(2rem, 2.8vw, 2.75rem);
            color: var(--primary-blue);
            margin-bottom: 24px;
            font-weight: 800;
            line-height: 1.15;
            max-width: 520px;
        }

        .about-copy p {
            margin-bottom: 18px;
            color: #5a6578;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 560px;
        }

        .about-copy p:last-of-type {
            margin-bottom: 28px;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-blue);
            color: white;
            padding: 14px 28px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .about-btn:hover {
            background: var(--primary-blue-dark);
            transform: translateY(-2px);
        }

        .about-btn i {
            font-size: 0.72rem;
        }

        .about-visual {
            position: relative;
            min-height: 360px;
            padding-top: 12px;
        }

        .about-cert-card {
            position: relative;
            z-index: 1;
            min-height: 320px;
            border-radius: 18px;
            background: linear-gradient(145deg, #7eb8d4 0%, #5a9fbe 100%);
            overflow: hidden;
        }

        .about-cert-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
                repeating-linear-gradient(
                    -35deg,
                    rgba(255, 255, 255, 0.06) 0,
                    rgba(255, 255, 255, 0.06) 2px,
                    transparent 2px,
                    transparent 16px
                );
            pointer-events: none;
        }

        .about-cert-card-inner {
            position: relative;
            z-index: 1;
            padding: 36px 32px;
            color: #fff;
        }

        .about-cert-mark {
            display: block;
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
            margin-bottom: 18px;
        }

        .about-cert-card-inner p {
            max-width: 220px;
            font-size: 0.98rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }

        .about-visual-product {
            position: absolute;
            top: 50%;
            right: -18px;
            transform: translateY(-50%) rotate(-18deg);
            width: 58%;
            z-index: 2;
            pointer-events: none;
        }

        .about-visual-product img {
            width: 100%;
            display: block;
            filter: drop-shadow(0 18px 30px rgba(0, 51, 102, 0.18));
        }

        .about-stats {
            display: flex;
            flex-direction: column;
            gap: 34px;
            padding-top: 18px;
        }

        .about-stat {
            display: flex;
            align-items: stretch;
            gap: 18px;
        }

        .about-stat-line {
            width: 3px;
            border-radius: 2px;
            background: var(--primary-blue-light);
            flex-shrink: 0;
        }

        .about-stat strong {
            display: block;
            font-family: var(--font-heading);
            font-size: clamp(1.85rem, 2.2vw, 2.35rem);
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .about-stat span {
            display: block;
            color: #5a6578;
            font-size: 0.95rem;
            line-height: 1.45;
        }

        /* Legacy about styles for inner pages */
        .about-tag {
            display: inline-block;
            color: var(--primary-red);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--primary-red);
            color: white;
            padding: 28px 32px;
            border-radius: 12px;
            text-align: center;
        }

        .about-badge h3 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 4px;
            line-height: 1;
        }

        .about-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .product-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
        }

        .product-image {
            height: 240px;
            background: var(--light-gray);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .product-info {
            padding: 25px;
        }

        .product-info h4 {
            color: var(--primary-blue);
            margin-bottom: 8px;
            font-size: 1.2rem;
            font-weight: 800;
        }

        .product-info p {
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .product-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-blue);
        }

        .btn-add {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .btn-add:hover {
            background: var(--primary-blue);
            transform: scale(1.05);
        }

        /* Footer */
        .site-footer {
            background: var(--primary-blue-light);
            color: #fff;
            padding: 70px 0 30px;
            margin-top: 0;
        }

        .site-footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .site-footer-main {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
            gap: 24px;
            align-items: start;
            margin-bottom: 48px;
        }

        .site-footer-logo {
            display: inline-block;
            margin-bottom: 24px;
        }

        .site-footer-logo img {
            display: block;
            max-height: 55px;
            width: auto;
        }

        .site-footer-brand p {
            max-width: 420px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .site-footer-made-in {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.8px;
            color: rgba(255, 255, 255, 0.92);
        }

        .site-footer-flag svg {
            width: 28px;
            height: auto;
            display: block;
            border-radius: 2px;
        }

        .site-footer-right {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .site-footer-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .site-footer-action-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-height: 68px;
            padding: 16px 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
            font-size: 0.96rem;
            font-weight: 600;
            line-height: 1.45;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .site-footer-action-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .site-footer-action-btn i {
            font-size: 0.82rem;
            opacity: 0.85;
            flex-shrink: 0;
        }

        .site-footer-nav {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.42fr) minmax(0, 0.42fr);
            gap: 36px;
        }

        .site-footer-nav-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 22px;
            padding-bottom: 12px;
            position: relative;
        }

        .site-footer-nav-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-red);
        }

        .site-footer-nav-columns {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px 36px;
        }

        .site-footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.94rem;
            line-height: 1.5;
            margin-bottom: 12px;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .site-footer-links a:hover {
            color: #ff8a8a;
            transform: translateX(4px);
        }

        .site-footer-contact {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 36px;
            padding: 36px 0 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .site-footer-contact-item {
            flex: 0 1 auto;
        }

        .site-footer-contact-item h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            position: relative;
            padding-bottom: 10px;
        }

        .site-footer-contact-item h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 3px;
            background: var(--primary-red);
        }

        .site-footer-contact-item p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.92rem;
            line-height: 1.75;
            margin: 0;
        }

        .site-footer-contact-item a {
            color: inherit;
            text-decoration: none;
        }

        .site-footer-contact-item a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .site-footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .site-footer-copyright {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.88rem;
            margin: 0;
        }

        .site-footer-social {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .site-footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .site-footer-social a:hover {
            background: var(--primary-red);
            transform: translateY(-2px);
        }

        /* WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 6px 20px rgba(37,211,102,0.4);
            z-index: 999;
            text-decoration: none;
            border: none;
            outline: none;
        }

        .whatsapp-float:hover,
        .whatsapp-float:focus {
            text-decoration: none;
            color: white;
        }

        .products-section{
    padding:80px 5%;
    background:#f7f8fa;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all .4s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.product-image{
    position:relative;
    height:280px;
    overflow:hidden;
    background:#f8f8f8;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}

.product-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    background:rgba(0,0,0,0.15);
    opacity:0;
    transition:.4s;
}

.product-card:hover .product-overlay{
    opacity:1;
}

.product-overlay a{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0b3d91;
    font-size:20px;
    text-decoration:none;
    transition:.3s;
}

.product-overlay a:hover{
    background:#0b3d91;
    color:#fff;
}

.product-info{
    padding:25px;
}

.category{
    display:block;
    font-size:12px;
    color:#0b3d91;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

.product-info h4{
    font-size:24px;
    color:#002d62;
    margin-bottom:10px;
}

.product-info p{
    color:#666;
    margin-bottom:20px;
    min-height:40px;
}

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

.price{
    font-size:30px;
    font-weight:700;
    color:#002d62;
}

.product-footer button{
    background:#e11d48;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.product-footer button:hover{
    background:#002d62;
}

/* Tablet */

@media(max-width:991px){

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

}

/* Mobile */

@media(max-width:576px){

    .products-grid{
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
    }

}

/* Why Choose Uniplast */
.why-uniplast {
    padding: 80px 30px;
    background: var(--light-gray);
}

.why-panel {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(0, 20, 40, 0.92) 0%, rgba(0, 51, 102, 0.88) 100%),
        url('image/banner2.jpg') center / cover no-repeat;
    padding: 70px 60px;
}

.why-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(200, 16, 46, 0.6);
    border-radius: 30px;
    color: #ff8a9a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.25);
}

.why-badge i {
    font-size: 0.85rem;
}

.why-content h2 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
}

.why-content h2 .highlight {
    color: var(--primary-red);
    display: block;
}

.why-content > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.why-stats-row {
    display: flex;
    gap: 50px;
}

.why-stat-inline strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat-inline span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.why-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.why-image-wrap {
    width: 85%;
    max-width: 400px;
    transform: rotate(-6deg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    background: #0a1628;
    padding: 20px;
}

.why-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: contain;
}

.why-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(20, 30, 50, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.why-float-top {
    top: 8%;
    right: 0;
}

.why-float-bottom {
    bottom: 12%;
    left: 0;
}

.why-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.why-float-icon.green {
    background: #10b981;
}

.why-float-icon.orange {
    background: var(--primary-red);
}

.why-float-card h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.why-float-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 991px) {
    .why-uniplast { padding: 50px 20px; }
    .why-panel { padding: 50px 30px; }
    .why-container { grid-template-columns: 1fr; gap: 45px; }
    .why-content h2 { font-size: 2.2rem; }
    .why-visual { min-height: 320px; }
    .why-float-top { right: 5%; }
    .why-float-bottom { left: 5%; }
}

@media (max-width: 576px) {
    .why-panel { padding: 40px 22px; border-radius: 18px; }
    .why-content h2 { font-size: 1.85rem; }
    .why-stats-row { flex-direction: column; gap: 24px; }
    .why-image-wrap { width: 90%; transform: rotate(-4deg); }
    .why-float-card { padding: 12px 16px; }
    .why-float-icon { width: 38px; height: 38px; font-size: 0.95rem; }
}

/* Why Choose Us */
.why-choose-section {
    background: #fff;
    padding: 90px 0;
}

.why-choose-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 64px;
    align-items: start;
}

.why-choose-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.why-choose-tag-line {
    width: 3px;
    height: 22px;
    border-radius: 2px;
    background: var(--primary-blue-light);
    flex-shrink: 0;
}

.why-choose-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 420px;
}

.why-choose-intro > p {
    color: #5a6578;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.why-choose-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 24px;
    background: #f3f5f8;
    border-radius: 20px;
    padding: 28px 28px 28px 32px;
    max-width: 520px;
    overflow: hidden;
}

.why-choose-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.why-choose-cta-label {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
}

.why-choose-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.why-choose-cta-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
}

.why-choose-cta-btn i {
    font-size: 0.72rem;
}

.why-choose-cta-image {
    border-radius: 14px;
    overflow: hidden;
    min-height: 140px;
}

.why-choose-cta-image img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 56px;
    padding-top: 8px;
}

.why-choose-feature {
    padding-right: 12px;
}

.why-choose-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 22px;
}

.why-choose-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.35;
}

.why-choose-feature p {
    color: #5a6578;
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

@media (max-width: 1100px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-choose-intro h2,
    .why-choose-intro > p {
        max-width: none;
    }

    .why-choose-cta-card {
        max-width: none;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-wrapper {
        padding: 0 20px;
    }

    .why-choose-features {
        gap: 36px 32px;
    }
}

@media (max-width: 576px) {
    .why-choose-wrapper {
        padding: 0 16px;
    }

    .why-choose-cta-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .why-choose-cta-image {
        min-height: 180px;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =========================
   GET QUOTE SECTION
========================= */

.quote-section {
    padding: 90px 0;
    background: #e3edf7;
}

.quote-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */

.quote-left {
    flex: 1;
}

.sub-title {
    display: inline-block;
    color: #003B7A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.quote-left h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #003B7A;
    margin-bottom: 25px;
}

.quote-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
    margin-bottom: 35px;
}

/* CONTACT CARD */

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    width: fit-content;
    margin-bottom: 25px;
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #003B7A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card span {
    display: block;
    color: #6c757d;
    font-size: 16px;
}

.contact-card h4 {
    margin-top: 5px;
    font-size: 22px;
    font-weight: 700;
    color: #001f4d;
}

/* TRUST BADGE */

.trust-badge {
    display: inline-block;
    background: #EAF2FB;
    color: #003B7A;
    border: 1px solid #d9e7f7;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* FORM BOX */

.quote-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #001f4d;
    font-size: 15px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d7dde5;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003B7A;
    box-shadow: 0 0 0 3px rgba(0,59,122,0.08);
}

.form-group textarea {
    resize: none;
}

.full-width {
    grid-column: 1 / -1;
}

/* BUTTON */

.submit-btn {
    width: 100%;
    border: none;
    background: #003B7A;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #002f61;
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .quote-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .quote-left h2 {
        font-size: 34px;
    }

    .quote-form {
        width: 100%;
    }

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

    .contact-card {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .quote-section {
        padding: 60px 0;
    }

    .quote-left h2 {
        font-size: 30px;
    }

    .quote-left p {
        font-size: 16px;
    }

    .quote-form {
        padding: 25px;
    }

    .contact-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .site-footer {
        padding: 56px 0 28px;
    }

    .site-footer-inner {
        padding: 0 20px;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }

    .site-footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-contact {
        flex-direction: column;
        gap: 28px;
        padding: 28px 0 28px;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

        /* Testimonials */
        .testimonials-section {
            padding: 90px 30px;
            background: #eef3f9;
        }

        .testimonials-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-slider-wrapper {
            position: relative;
            margin-top: 10px;
            padding: 0 56px;
        }

        .testimonials-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            background: var(--primary-blue);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            z-index: 10;
            transition: background 0.25s ease, transform 0.25s ease;
            box-shadow: 0 5px 20px rgba(0, 51, 102, 0.25);
        }

        .testimonials-slider-nav:hover {
            background: var(--primary-red);
            transform: translateY(-50%) scale(1.06);
        }

        .testimonials-slider-nav.prev {
            left: 0;
        }

        .testimonials-slider-nav.next {
            right: 0;
        }

        .testimonials-slider {
            display: flex;
            gap: 28px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 4px 24px;
        }

        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }

        .testimonial-slide {
            flex: 0 0 calc((100% - 56px) / 3);
            min-width: calc((100% - 56px) / 3);
            scroll-snap-align: start;
        }

        .testimonials-slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }

        .testimonials-slider-dot {
            width: 10px;
            height: 10px;
            border: none;
            border-radius: 50%;
            background: rgba(0, 51, 102, 0.2);
            cursor: pointer;
            padding: 0;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .testimonials-slider-dot.active {
            background: var(--primary-blue);
            transform: scale(1.15);
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 18px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e2e8f0;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .testimonial-stars {
            color: #f59e0b;
            font-size: 0.9rem;
            display: flex;
            gap: 3px;
        }

        .testimonial-text {
            color: #555;
            font-size: 0.98rem;
            line-height: 1.75;
            flex: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 8px;
            border-top: 1px solid #e5e9ef;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .testimonial-info h4 {
            color: var(--primary-blue);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .testimonial-info span {
            color: #888;
            font-size: 0.82rem;
        }

        /* FAQ */
        .faq-section {
            padding: 90px 30px;
            background: var(--light-gray);
        }

        .faq-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 10px;
        }

        .faq-item {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #e8ecf1;
            transition: box-shadow 0.3s;
        }

        .faq-item.active {
            box-shadow: 0 8px 25px rgba(0, 51, 102, 0.08);
            border-color: var(--primary-blue);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--primary-red);
        }

        .faq-question i {
            font-size: 0.85rem;
            color: var(--primary-red);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.75;
        }

        @media (max-width: 991px) {
            :root { --header-height: 80px; }
            .home-promo-grid {
                grid-template-columns: 1fr 1fr;
            }

            .promo-card--featured,
            .promo-card--wide {
                grid-column: 1 / -1;
            }

            .promo-card--compact,
            .promo-card--medium {
                grid-column: auto;
            }

            .promo-card--featured .promo-photo-blob {
                width: 200px;
                height: 200px;
            }

            .featured-toolbar { flex-direction: column; align-items: flex-start; }
            .featured-toolbar-right {
                width: 100%;
                margin-left: 0;
                justify-content: space-between;
            }
            .product-sort-field select { min-width: 0; width: 100%; }
            .about-layout {
                grid-template-columns: 1fr 1fr;
                gap: 40px 32px;
            }

            .about-stats {
                grid-column: 1 / -1;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 28px 36px;
            }

            .about-stat {
                flex: 1 1 calc(50% - 18px);
            }

            .testimonial-slide {
                flex: 0 0 calc((100% - 28px) / 2);
                min-width: calc((100% - 28px) / 2);
            }

            .testimonials-slider-wrapper {
                padding: 0 48px;
            }
        }

        @media (max-width: 576px) {
            :root { --header-height: 75px; }
            .home-promo {
                padding: 18px 16px 24px;
            }

            .home-promo-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .promo-card--featured,
            .promo-card--compact,
            .promo-card--wide,
            .promo-card--medium {
                grid-column: 1;
                min-height: auto;
            }

            .promo-card-inner {
                flex-direction: column;
                align-items: flex-start;
                padding: 22px 20px;
            }

            .promo-card-copy {
                max-width: 100%;
            }

            .promo-card-copy h2 {
                font-size: 1.25rem;
            }

            .promo-photo-blob,
            .promo-card--featured .promo-photo-blob {
                width: 100%;
                max-width: 220px;
                height: 180px;
                margin: 0 auto;
            }

            .promo-card-visual {
                width: 100%;
            }

            .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
            .product-filters { gap: 8px; }
            .product-search { max-width: 100%; }
            .featured-toolbar { flex-direction: column; align-items: stretch; }
            .about-section { padding: 60px 0; }
            .about-badge { bottom: 16px; right: 16px; padding: 20px 24px; }
            .about-badge h3 { font-size: 2rem; }
        }

        /* =========================
           RESPONSIVE — TABLET
        ========================= */
        @media (max-width: 991px) {
            .header-bottom {
                padding: 12px 20px;
                gap: 16px;
                justify-content: space-between;
            }

            .site-nav-desktop {
                display: none;
            }

            .site-nav-mobile {
                display: block;
            }

            .logo img {
                height: auto;
                max-height: 46px;
            }

            .mobile-menu-toggle {
                display: inline-flex;
            }

            .mobile-drawer {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                width: auto;
                height: auto;
                pointer-events: none;
                z-index: 1200;
            }

            .mobile-drawer-panel {
                position: fixed;
                top: 0;
                left: 0;
                width: min(320px, 88vw);
                height: 100vh;
                height: 100dvh;
                max-height: 100dvh;
                background: #fff;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                transform: translateX(-100%);
                visibility: hidden;
                pointer-events: none;
                transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.34s ease;
                z-index: 1201;
                box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
            }

            body.mobile-nav-open .mobile-drawer-panel {
                transform: translateX(0);
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-drawer-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 16px 18px;
                border-bottom: 1px solid #edf2f7;
                flex-shrink: 0;
            }

            .mobile-drawer-logo img {
                height: auto;
                max-height: 42px;
                width: auto;
            }

            .mobile-drawer-footer {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 18px;
                border-top: 1px solid #edf2f7;
                margin-top: auto;
                flex-shrink: 0;
                background: #f8fafc;
            }

            .mobile-drawer-account,
            .mobile-drawer-contact {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 14px 16px;
                border-radius: 12px;
                text-decoration: none;
                font-weight: 700;
                font-size: 0.95rem;
                transition: background 0.25s ease, color 0.25s ease;
            }

            .mobile-drawer-account {
                background: var(--primary-blue);
                color: #fff;
            }

            .mobile-drawer-account:hover {
                background: #002f61;
                color: #fff;
            }

            .mobile-drawer-contact {
                background: #fff;
                color: var(--primary-blue);
                border: 1px solid #dce4ee;
            }

            .mobile-drawer-contact:hover {
                background: #eef3f9;
                color: var(--primary-red);
            }

            .site-nav {
                flex: 1;
                overflow-y: auto;
                padding: 8px 0;
                -webkit-overflow-scrolling: touch;
            }

            .site-nav ul {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }

            .site-nav ul > li {
                border-bottom: 1px solid #edf2f7;
            }

            .site-nav a,
            .site-nav .nav-dropdown-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 15px 18px;
                font-size: 1rem;
            }

            .site-nav .nav-dropdown-toggle i {
                margin-left: auto;
            }

            .site-nav a::after {
                display: none;
            }

            .has-mega-menu {
                position: relative;
            }

            .mega-menu {
                position: static !important;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                opacity: 1;
                visibility: visible;
                transform: none !important;
                box-shadow: none;
                border-top: none;
                padding: 0 12px 8px;
                display: none;
                background: #f8fafc;
            }

            .has-mega-menu.is-open .mega-menu {
                display: block;
            }

            .has-nav-dropdown {
                position: relative;
            }

            .nav-dropdown-menu {
                position: static;
                left: auto;
                min-width: 0;
                transform: none !important;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                border: none;
                padding: 0 12px 8px;
                display: none;
                background: #f8fafc;
            }

            .has-nav-dropdown.is-open .nav-dropdown-menu {
                display: block;
            }

            .nav-dropdown-menu a {
                padding: 12px 14px;
                font-size: 0.95rem;
            }

            .services-dropdown-menu a {
                white-space: normal;
            }

            .resources-dropdown-menu a {
                white-space: normal;
            }

            .mega-menu-categories h3 {
                font-size: 0.78rem;
                padding: 8px 6px 4px;
                color: #64748b;
                text-transform: uppercase;
                letter-spacing: 0.08em;
            }

            .mega-menu-grid {
                grid-template-columns: 1fr;
                gap: 4px;
            }

            .mega-category-item {
                padding: 10px 12px;
                border-radius: 10px;
            }

            .mega-menu-inner {
                padding: 0;
            }

            .mega-menu-trending {
                display: none;
            }

            .header-right {
                gap: 14px;
            }

            .header-actions {
                gap: 8px;
            }

            .section {
                padding: 55px 0;
            }

            .section-header {
                margin-bottom: 36px;
                padding: 0 20px;
            }

            .section-header h2 {
                font-size: 2.1rem;
            }

            .home-promo {
                padding: 20px;
            }

            .category-slider-wrapper,
            .featured-toolbar,
            .featured-section .products-grid,
            .about-wrapper {
                padding-left: 20px;
                padding-right: 20px;
            }

            .featured-section .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .featured-section .product-image {
                height: 220px;
            }

            .category-item {
                min-width: 240px;
            }

            .category-image {
                height: 220px;
            }

            .slider-nav {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }

            .site-footer-actions {
                grid-template-columns: 1fr;
            }

            .site-footer-nav-columns {
                gap: 12px 24px;
            }

            .testimonials-section,
            .faq-section {
                padding: 70px 20px;
            }

            .whatsapp-float {
                width: 54px;
                height: 54px;
                font-size: 1.6rem;
                bottom: 20px;
                left: 20px;
            }
        }

        /* =========================
           RESPONSIVE — MOBILE
        ========================= */
        @media (max-width: 576px) {
            .header-bottom {
                padding: 10px 14px;
            }

            .logo img {
                height: auto;
                max-height: 40px;
            }

            .header-right {
                gap: 8px;
            }

            .search-toggle,
            .cart-link {
                font-size: 1.1rem;
                padding: 6px;
            }

            .language-toggle {
                padding: 8px 10px;
            }

            .mobile-menu-toggle {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                padding: 14px 24px;
                font-size: 0.92rem;
            }

            .section {
                padding: 45px 0;
            }

            .section-header {
                margin-bottom: 28px;
                padding: 0 16px;
            }

            .section-header small {
                font-size: 0.78rem;
                letter-spacing: 1.4px;
            }

            .section-header h2 {
                font-size: 1.65rem;
                margin: 10px 0 12px;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .category-slider-wrapper,
            .featured-toolbar,
            .featured-section .products-grid,
            .about-wrapper {
                padding-left: 16px;
                padding-right: 16px;
            }

            .category-item {
                min-width: 200px;
            }

            .category-image {
                height: 180px;
            }

            .category-name {
                font-size: 0.95rem;
            }

            .slider-nav.prev { left: 4px; }
            .slider-nav.next { right: 4px; }

            .featured-section .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .featured-section .product-image {
                height: 150px;
            }

            .featured-section .product-body {
                padding: 12px 10px 14px;
            }

            .featured-section .product-title {
                font-size: 0.78rem;
                min-height: auto;
                -webkit-line-clamp: 3;
            }

            .featured-section .product-explore-btn {
                padding: 9px 12px;
                font-size: 0.78rem;
            }

            .about-wrapper {
                padding: 0 16px;
            }

            .about-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .about-copy h2,
            .about-copy p {
                max-width: none;
            }

            .about-visual {
                min-height: 300px;
            }

            .about-cert-card {
                min-height: 280px;
            }

            .about-visual-product {
                width: 52%;
                right: -8px;
            }

            .about-stats {
                flex-direction: column;
                gap: 24px;
                padding-top: 0;
            }

            .about-stat {
                flex: none;
            }

            .testimonials-section,
            .faq-section {
                padding: 50px 16px;
            }

            .testimonial-card {
                padding: 22px;
            }

            .testimonial-slide {
                flex: 0 0 100%;
                min-width: 100%;
            }

            .testimonials-slider-wrapper {
                padding: 0 42px;
            }

            .testimonials-slider-nav {
                width: 38px;
                height: 38px;
                font-size: 0.85rem;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 16px 18px;
            }

            .faq-answer p {
                font-size: 0.9rem;
                padding: 0 18px 16px;
            }

            .site-footer {
                padding: 48px 0 24px;
            }

            .site-footer-inner {
                padding: 0 16px;
            }

            .site-footer-action-btn {
                min-height: 64px;
                padding: 16px 18px;
                font-size: 0.92rem;
            }

            .site-footer-nav-columns {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.45rem;
                bottom: 16px;
                left: 16px;
            }
        }

/* =========================
   INNER PAGES
========================= */

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 20, 38, 0.9) 0%, rgba(8, 20, 38, 0.78) 50%, rgba(8, 20, 38, 0.62) 100%),
        url('../image/banner-2.jpeg') center / cover no-repeat;
    padding: 72px 30px 88px;
    text-align: left;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.35;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 500;
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.page-breadcrumb a:hover {
    color: #ff8a9a;
}

.page-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.page-breadcrumb-current {
    color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    margin: 0;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 16px 0 0;
    max-width: 640px;
}

.page-hero--compact {
    padding: 48px 30px 56px;
}

.page-hero--compact .page-breadcrumb {
    margin-bottom: 0;
}

.page-section {
    padding: 80px 0;
    background: #fff;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.policy-container {
    max-width: 900px;
}

.policy-content {
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
}

.policy-intro {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 36px 0 14px;
}

.policy-content h2:first-of-type {
    margin-top: 28px;
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 0 0 18px 1.2rem;
}

.policy-content li {
    margin-bottom: 10px;
}

.site-footer-copyright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer-legal-sep {
    margin: 0 10px;
    opacity: 0.6;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.about-page-image {
    position: relative;
}

.about-page-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.about-page-content h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-page-content p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-page-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.about-page-card {
    background: var(--light-gray);
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 28px 22px;
}

.about-page-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.about-page-card h3 {
    font-size: 1.05rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.about-page-card p {
    color: #5a6578;
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}

.page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 34px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5f8fc 0%, #eef4fa 100%);
    border: 1px solid #dce7f2;
}

.page-cta h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.page-cta p {
    color: #5a6578;
    margin: 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Vision & Mission page */
.vm-page {
    padding: 0 0 90px;
}

.vm-split-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px 80px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.vm-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vm-split-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 22px;
    line-height: 1.25;
}

.vm-split-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
}

.vm-split-media {
    border-radius: 6px;
    overflow: hidden;
    background: #f0f4f8;
    min-height: 280px;
}

.vm-split-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.vm-content {
    max-width: 920px;
    padding-top: 10px;
}

.vm-block {
    margin-bottom: 52px;
}

.vm-block:last-child {
    margin-bottom: 0;
}

.vm-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 14px;
}

.vm-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.vm-block > p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
}

.vm-values-section {
    background: var(--light-gray);
    padding: 70px 30px 90px;
}

.vm-values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-values-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 18px;
    line-height: 1.25;
}

.vm-values-intro {
    color: #777;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 0 40px;
    max-width: 100%;
}

.vm-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.vm-value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    padding: 24px 22px;
}

.vm-value-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border: 1px solid #dce4ee;
    border-radius: 6px;
    color: var(--primary-blue);
    font-size: 1.65rem;
}

.vm-value-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.vm-value-body p {
    color: #555;
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0;
}

.vision-mission-card {
    background: var(--light-gray);
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 38px 34px;
}

.vision-card {
    border-top: 4px solid var(--primary-blue);
}

.mission-card {
    border-top: 4px solid var(--primary-red);
}

.vision-mission-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-blue);
    font-size: 1.35rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.08);
}

.mission-card .vision-mission-icon {
    color: var(--primary-red);
}

.vision-mission-card h2 {
    font-size: 1.65rem;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 18px;
}

.vision-mission-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.vision-mission-card p:last-child {
    margin-bottom: 0;
}

.values-section .section-header {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.values-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.values-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fb;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.values-card h3 {
    font-size: 1.02rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.values-card p {
    color: #5a6578;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .page-hero {
        padding: 56px 20px 64px;
    }

    .page-hero-inner {
        padding: 0 10px;
    }

    .page-hero h1 {
        font-size: 2.35rem;
    }

    .page-section {
        padding: 60px 0;
    }

    .page-container {
        padding: 0 20px;
    }

    .about-page-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-page-highlights,
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .vm-page {
        padding: 0 0 70px;
    }

    .vm-split-wrap {
        padding: 50px 20px 60px;
        gap: 50px;
    }

    .vm-split-row,
    .vm-split-row.vm-split-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vm-split-reverse .vm-split-media {
        order: -1;
    }

    .vm-split-text h2 {
        font-size: 1.65rem;
    }

    .vm-heading {
        font-size: 1.5rem;
    }

    .vm-block {
        margin-bottom: 40px;
    }

    .vm-values-section {
        padding: 50px 20px 70px;
    }

    .vm-values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vm-values-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 576px) {
    .page-breadcrumb {
        font-size: 0.85rem;
        gap: 8px;
        margin-bottom: 14px;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .about-page-highlights,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-cta {
        padding: 24px 20px;
    }

    .vm-split-text h2 {
        font-size: 1.45rem;
    }

    .vm-split-media,
    .vm-split-media img {
        min-height: 220px;
    }

    .vm-heading {
        font-size: 1.35rem;
    }

    .vm-value-card {
        padding: 20px 18px;
        gap: 16px;
    }

    .vm-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.35rem;
    }

    .vm-value-body h3 {
        font-size: 1rem;
    }

    .vm-value-body p {
        font-size: 0.9rem;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    padding: 70px 0 50px;
    background: #fff;
}

.contact-touch-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.contact-touch-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.contact-touch-header p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
}

.contact-page .page-container {
    max-width: 1320px;
}

.contact-touch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    width: 100%;
}

.contact-details {
    width: 100%;
    background: var(--light-gray);
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid #dce4ee;
}

.contact-detail-item:first-child {
    padding-top: 0;
}

.contact-detail-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-detail-body {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.contact-detail-phones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    width: 100%;
}

.contact-detail-phones a {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.25s ease;
}

.contact-detail-phones a:hover {
    color: var(--primary-red);
}

.contact-detail-icon {
    width: auto;
    height: auto;
    min-width: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
    background: none;
    color: var(--primary-blue);
    font-size: 1.35rem;
}

.contact-detail-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-detail-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.contact-detail-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-detail-item a:hover {
    color: var(--primary-red);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    min-height: 480px;
    background: #eef2f6;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

.contact-quote-section {
    padding-top: 70px;
    padding-bottom: 90px;
}

.contact-card h4 a {
    color: inherit;
    text-decoration: none;
}

.contact-card h4 a:hover {
    color: var(--primary-red);
}

@media (max-width: 991px) {
    .contact-page {
        padding: 50px 0 30px;
    }

    .contact-touch-header h2 {
        font-size: 1.85rem;
    }

    .contact-touch-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .contact-details {
        padding: 28px 22px;
    }

    .contact-detail-phones {
        grid-template-columns: 1fr;
    }

    .contact-touch-header h2 {
        font-size: 1.65rem;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 300px;
    }
}

/* =========================
   RESOURCES / DOCUMENTS PAGE
========================= */

.resources-page {
    padding: 60px 0 90px;
    background: #fff;
}

.resources-container {
    max-width: 1200px;
}

.resources-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
}

.resources-header-text h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.2;
}

.resources-header-text p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

.resources-callout {
    flex-shrink: 0;
    max-width: 320px;
    background: #eaf4fc;
    border: 1px solid #d4e8f7;
    border-radius: 8px;
    padding: 18px 20px;
}

.resources-callout p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.resources-callout a {
    color: var(--primary-blue-light);
    font-weight: 600;
    text-decoration: none;
}

.resources-callout a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.resources-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #d7dde5;
    margin-bottom: 36px;
}

.resources-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    padding: 14px 22px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.resources-tab:hover {
    color: var(--primary-blue);
}

.resources-tab.active {
    color: var(--primary-blue);
    border-bottom-color: #1a202c;
}

.resources-panel {
    display: none;
}

.resources-panel.active {
    display: block;
}

.resources-panel-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.resources-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resources-not-found h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 16px 0 12px;
}

.resources-not-found-box {
    background: #eef4fa;
    border: 1px solid #d4e3f0;
    border-radius: 6px;
    padding: 18px 16px;
}

.resources-not-found-box p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 14px;
}

.resources-not-found-box a {
    color: var(--primary-blue-light);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.resources-not-found-box a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.resources-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.resources-instruction {
    color: #555;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 8px;
}

.resources-required-note {
    color: #666;
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.resources-required-note span {
    color: var(--primary-red);
}

.resources-form {
    max-width: 520px;
}

.resources-field {
    margin-bottom: 22px;
}

.resources-field label {
    display: block;
    font-weight: 700;
    color: #1a202c;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.resources-field label .req {
    color: var(--primary-red);
    margin-right: 2px;
}

.resources-field input,
.resources-field select,
.resources-field textarea {
    width: 100%;
    border: 1px solid #c5cdd8;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
}

.resources-field input:focus,
.resources-field select:focus,
.resources-field textarea:focus {
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 0 3px rgba(43, 95, 155, 0.1);
}

.resources-fields-placeholder {
    background: #f8fafc;
    border: 1px dashed #d7dde5;
    border-radius: 8px;
    padding: 24px 20px;
    margin-bottom: 22px;
}

.resources-placeholder-msg {
    color: #777;
    font-size: 0.92rem;
    margin: 0;
    text-align: center;
}

.resources-search-btn {
    border: none;
    background: var(--primary-blue-light);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.resources-search-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-1px);
}

.resources-help {
    border: 1px solid #d7dde5;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f7fa;
}

.resources-help-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: none;
    background: #f5f7fa;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: left;
}

.resources-help-toggle i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.resources-help.is-open .resources-help-toggle i {
    transform: rotate(180deg);
}

.resources-help-content {
    padding: 0 16px 16px;
}

.resources-help-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.resources-help-content a {
    color: var(--primary-blue-light);
    text-decoration: none;
}

.resources-help-content a:hover {
    color: var(--primary-red);
}

@media (max-width: 991px) {
    .resources-header {
        flex-direction: column;
        gap: 20px;
    }

    .resources-callout {
        max-width: 100%;
    }

    .resources-panel-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .resources-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .resources-tab {
        flex-shrink: 0;
        padding: 12px 16px;
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .resources-header-text h2 {
        font-size: 1.85rem;
    }

    .resources-form {
        max-width: 100%;
    }
}

/* =========================
   CUSTOMER FAQ PAGE
========================= */

.customer-faq-page {
    padding: 60px 0 90px;
    background: #fff;
}

.customer-faq-container {
    max-width: 900px;
}

.customer-faq-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
}

.customer-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-faq-item {
    background: #fff;
    border: 1px solid #d7dde5;
    border-radius: 4px;
    overflow: hidden;
}

.customer-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: #1a202c;
    transition: background 0.25s ease;
}

.customer-faq-question:hover {
    background: #fafbfc;
}

.customer-faq-number {
    flex-shrink: 0;
    font-weight: 700;
    color: #1a202c;
    min-width: 24px;
}

.customer-faq-text {
    flex: 1;
    line-height: 1.5;
}

.customer-faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c5cdd8;
    border-radius: 3px;
    color: var(--primary-blue-light);
    font-size: 0.85rem;
    background: #fff;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.customer-faq-item.active .customer-faq-toggle {
    border-color: var(--primary-blue-light);
}

.customer-faq-item.active .customer-faq-toggle i::before {
    content: '\f068';
}

.customer-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.customer-faq-item.active .customer-faq-answer {
    max-height: 400px;
}

.customer-faq-answer p {
    padding: 0 20px 20px 56px;
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.75;
}

.customer-faq-answer a {
    color: var(--primary-blue-light);
    text-decoration: none;
    font-weight: 600;
}

.customer-faq-answer a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .customer-faq-title {
        font-size: 1.75rem;
        margin-bottom: 28px;
    }

    .customer-faq-question {
        padding: 14px 16px;
        font-size: 0.92rem;
        gap: 10px;
    }

    .customer-faq-answer p {
        padding: 0 16px 16px 16px;
        font-size: 0.9rem;
    }
}

/* =========================
   NEW PRODUCT DEVELOPMENT
========================= */

.npd-page {
    padding: 60px 0 90px;
    background: #fff;
}

.npd-container {
    max-width: 1100px;
}

.npd-intro {
    margin-bottom: 48px;
}

.npd-intro p {
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
    margin: 0 0 20px;
}

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

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

.npd-stage-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 160px;
    padding: 28px 18px;
    border-radius: 4px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.npd-stage-tile:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 51, 102, 0.25);
    z-index: 1;
}

.npd-stage-tile--dark {
    background: var(--primary-blue-light);
}

.npd-stage-tile--light {
    background: #5aadd6;
}

.npd-stage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    font-size: 2.4rem;
    line-height: 1;
}

.npd-stage-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #fff;
}

@media (max-width: 992px) {
    .npd-stage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .npd-page {
        padding: 48px 0 70px;
    }

    .npd-intro {
        margin-bottom: 36px;
    }

    .npd-stage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .npd-stage-tile {
        min-height: 140px;
        padding: 22px 14px;
    }

    .npd-stage-icon {
        width: 52px;
        height: 52px;
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .npd-stage-title {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .npd-stage-grid {
        grid-template-columns: 1fr;
    }

    .npd-stage-tile {
        min-height: 120px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 16px;
        padding: 18px 20px;
    }

    .npd-stage-icon {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
        flex-shrink: 0;
    }
}

/* =========================
   OEM CUSTOMIZED SOLUTIONS
========================= */

.oem-page {
    padding: 60px 0 90px;
    background: #fff;
}

.oem-container {
    max-width: 900px;
}

.oem-intro {
    margin-bottom: 40px;
}

.oem-intro p {
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
    margin: 0 0 20px;
}

.oem-intro-lead {
    margin-bottom: 0 !important;
    color: #333;
    font-weight: 500;
}

.oem-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oem-feature-card {
    background: #fff;
    padding: 28px 32px;
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(0, 51, 102, 0.08);
    border-bottom: 3px solid var(--primary-blue-light);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.oem-feature-card:hover {
    box-shadow: 0 8px 28px rgba(0, 51, 102, 0.14);
    transform: translateY(-2px);
}

.oem-feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    margin: 0 0 10px;
    line-height: 1.4;
}

.oem-feature-desc {
    margin: 0;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.75;
}

@media (max-width: 576px) {
    .oem-page {
        padding: 48px 0 70px;
    }

    .oem-intro {
        margin-bottom: 28px;
    }

    .oem-feature-card {
        padding: 22px 20px;
    }

    .oem-feature-title {
        font-size: 1.05rem;
    }

    .oem-feature-desc {
        font-size: 0.92rem;
    }
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */

.product-detail-page {
    padding: 50px 0 90px;
    background: #fff;
}

.product-detail-container {
    max-width: 1140px;
}

.product-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.product-detail-image-wrap {
    background: #f5f7fa;
    border-radius: 16px;
    padding: 32px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eef2f6;
}

.product-detail-image {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-detail-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #e67e22;
    margin: 0 0 12px;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.35;
    margin: 0 0 16px;
}

.product-detail-code {
    color: #555;
    font-size: 0.95rem;
    margin: 0 0 12px;
}

.product-detail-code strong {
    color: var(--primary-blue);
}

.product-detail-material {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.product-detail-material i {
    color: var(--primary-blue-light);
}

.product-detail-short-desc {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8edf2;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product-detail-quote-btn,
.product-detail-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.92rem;
}

.product-detail-cart-btn {
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-outline {
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: #fff;
}

.product-detail-tabs-wrap {
    border-top: 1px solid #e8edf2;
    padding-top: 36px;
}

.product-detail-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #d7dde5;
    margin-bottom: 32px;
}

.product-detail-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.product-detail-tab:hover {
    color: var(--primary-blue);
}

.product-detail-tab.active {
    color: var(--primary-blue);
    border-bottom-color: #1a202c;
}

.product-detail-panel {
    display: none;
}

.product-detail-panel.active {
    display: block;
}

.product-detail-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 18px;
}

.product-detail-panel p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 20px;
}

.product-detail-highlights {
    margin: 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.85;
}

.product-detail-highlights li {
    margin-bottom: 8px;
}

.product-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid #e8edf2;
    border-radius: 8px;
}

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.product-spec-table th,
.product-spec-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eef2f6;
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
    border-bottom: none;
}

.product-spec-table th {
    width: 34%;
    background: #f8fafc;
    color: #1a202c;
    font-weight: 700;
}

.product-spec-table td {
    color: #555;
}

.product-datasheet-intro {
    max-width: 760px;
}

.product-datasheet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.product-datasheet-card {
    background: #f8fafc;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    padding: 20px 22px;
}

.product-datasheet-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    margin: 0 0 10px;
}

.product-datasheet-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.product-datasheet-cta {
    background: #eef4fa;
    border: 1px solid #d4e3f0;
    border-radius: 8px;
    padding: 22px 24px;
}

.product-datasheet-cta p {
    margin: 0 0 12px;
    color: #555;
    font-size: 0.95rem;
}

.product-datasheet-cta a {
    color: var(--primary-blue-light);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-datasheet-cta a:hover {
    color: var(--primary-red);
}

@media (max-width: 992px) {
    .product-detail-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-detail-image-wrap {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 40px 0 70px;
    }

    .product-detail-title {
        font-size: 1.45rem;
    }

    .product-detail-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .product-detail-tab {
        white-space: nowrap;
        padding: 12px 18px;
    }

    .product-datasheet-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-quote-btn,
    .product-detail-cart-btn {
        justify-content: center;
        width: 100%;
    }
}

.related-products-section {
    padding-top: 56px;
    padding-bottom: 80px;
}

.related-products-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.related-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.related-products-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.related-products-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.related-products-link:hover {
    color: var(--primary-blue-light);
    gap: 12px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.related-products-section .product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-products-section .product-item:hover .product-card {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.related-products-section .product-image {
    position: relative;
    height: 240px;
    background: #f5f7fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

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

.related-products-section .product-item:hover .product-image img {
    transform: scale(1.04);
}

.related-products-section .product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 51, 102, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-products-section .product-item:hover .product-overlay {
    opacity: 1;
}

.related-products-section .product-overlay .product-explore-btn {
    width: auto;
    height: auto;
    min-width: 0;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 12px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
}

.related-products-section .product-overlay .product-explore-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.related-products-section .product-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.related-products-section .product-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.related-products-section .product-title a {
    color: #1a202c;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-products-section .product-title a:hover {
    color: var(--primary-blue);
}

.related-products-section .product-price {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
}

@media (max-width: 1199px) {
    .related-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .related-products-title {
        font-size: 1.45rem;
    }

    .related-products-section .product-overlay .product-explore-btn {
        padding: 9px 12px;
        font-size: 0.78rem;
    }
}

.category-products-section {
    padding-top: 48px;
}

/* =========================
   HOME CATEGORY GRID
========================= */

.home-categories-section {
    padding-bottom: 80px;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 24px 22px 0;
    background: #f4f7f9;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(0, 51, 102, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-category-card:hover,
.home-category-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 51, 102, 0.1);
    border-color: rgba(43, 95, 155, 0.18);
}

.home-category-title {
    margin: 0 0 16px;
    padding: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--primary-blue);
    text-align: left;
}

.home-category-media {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 190px;
    padding-bottom: 22px;
}

.home-category-media img {
    width: auto;
    max-width: 88%;
    max-height: 170px;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.35s ease;
}

.home-category-card:hover .home-category-media img,
.home-category-card:focus-visible .home-category-media img {
    transform: scale(1.04);
}

.home-category-hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(244, 247, 249, 0.82);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-category-card:hover .home-category-hover,
.home-category-card:focus-visible .home-category-hover {
    opacity: 1;
}

.home-category-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 26px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.18);
    transition: background 0.3s ease, transform 0.3s ease;
}

.home-category-card:hover .home-category-explore-btn,
.home-category-card:focus-visible .home-category-explore-btn {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .home-categories-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 0 20px;
    }

    .home-category-card {
        min-height: 240px;
        padding: 20px 18px 0;
        border-radius: 20px;
    }

    .home-category-media {
        min-height: 160px;
        padding-bottom: 18px;
    }

    .home-category-media img {
        max-height: 140px;
    }

    .home-category-title {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .home-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PRODUCT LITERATURE PAGE
========================= */

.literature-page {
    padding: 60px 0 90px;
    background: #fff;
}

.literature-container {
    max-width: 1200px;
}

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

.literature-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(0, 51, 102, 0.08);
    border-bottom: 3px solid var(--primary-blue-light);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.literature-card:hover {
    box-shadow: 0 8px 28px rgba(0, 51, 102, 0.14);
    transform: translateY(-2px);
}

.literature-card-body {
    display: flex;
    align-items: stretch;
    min-height: 160px;
}

.literature-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 20px;
    gap: 18px;
}

.literature-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.45;
    margin: 0;
}

.literature-badge {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-red);
}

.literature-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid #1a202c;
    border-radius: 4px;
    color: #1a202c;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.literature-download-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.2);
}

.literature-card-thumb {
    width: 110px;
    flex-shrink: 0;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-left: 1px solid #eef2f6;
}

.literature-card-thumb img {
    width: 100%;
    height: 100%;
    max-height: 140px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .literature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .literature-page {
        padding: 48px 0 70px;
    }

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

    .literature-card-body {
        min-height: 140px;
    }

    .literature-card-thumb {
        width: 96px;
    }
}
