

        :root {
            --primary: #1A365D;
            --primary-dark: #0F2341;
            --accent: #C59B27;
            --accent-light: #FDF8ED;
            --text-dark: #1E293B;
            --text-muted: #64748B;
            --bg-light: #F8FAFC;
            --border: #E2E8F0;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            color: var(--text-dark);
            background-color: #FAFAFA;
            line-height: 1.6;
        }

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

        /* =========================
           HERO SECTION
        ========================= */

        .hero {
            background:
                linear-gradient(
                    rgba(15, 35, 65, 0.92),
                    rgba(15, 35, 65, 0.92)
                ),
                none
                center/cover;

            color: var(--white);
            padding: 85px 0 65px;
            text-align: center;
        }

        .badge-main {
            display: inline-block;
            background-color: var(--accent);
            color: var(--white);
            padding: 6px 18px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .hero p {
            font-size: 17px;
            color: #CBD5E1;
            max-width: 820px;
            margin: 0 auto 30px;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--white);
            border: 2px solid var(--accent);
        }

        .btn-primary:hover {
            background-color: #A37E1C;
            border-color: #A37E1C;
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid #FFFFFF;
        }

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


        /* =========================
           HIGHLIGHTS
        ========================= */

        .highlights-strip {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 24px 0;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .highlight-item h4 {
            color: var(--primary);
            font-size: 16px;
            font-weight: 700;
        }

        .highlight-item p {
            font-size: 13px;
            color: var(--text-muted);
        }


        /* =========================
           SECTION
        ========================= */

        .section-padding {
            padding: 70px 0;
        }

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

        .section-header h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }


        /* =========================
           PRODUCT GRID
        ========================= */

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .product-card img {
            width: 100%;
            height: 210px;
            object-fit: cover;
        }

        .product-body {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .hs-tag {
            display: inline-block;
            background: var(--accent-light);
            color: #8C6D13;
            border: 1px solid #E2D1A6;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
            align-self: flex-start;
        }

        .product-body h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .product-body p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .variety-list {
            list-style: none;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .variety-list li {
            font-size: 13.5px;
            padding: 6px 0;
            border-bottom: 1px dashed var(--border);
            position: relative;
            padding-left: 18px;
        }

        .variety-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 12px;
        }


        /* =========================
           TECHNICAL TABLE
        ========================= */

        .table-section {
            background: var(--bg-light);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .table-responsive {
            overflow-x: auto;
            background: var(--white);
            border-radius: 8px;
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 14px;
        }

        th {
            background-color: var(--primary);
            color: var(--white);
            padding: 14px 18px;
            font-weight: 600;
            white-space: nowrap;
        }

        td {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            color: var(--text-dark);
        }

        tr:nth-child(even) {
            background-color: #F8FAFC;
        }


        /* =========================
           PACKAGING
        ========================= */

        .packaging-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .pack-card {
            background: var(--white);
            padding: 24px;
            border-radius: 8px;
            border: 1px solid var(--border);
            border-top: 4px solid var(--primary);
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

        .pack-card h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .pack-card ul {
            list-style: none;
            font-size: 13.5px;
            color: var(--text-dark);
        }

        .pack-card ul li {
            padding: 5px 0;
            border-bottom: 1px solid #F1F5F9;
        }

        .pack-card ul li strong {
            color: var(--primary-dark);
        }


        /* =========================
           RFQ SECTION
        ========================= */

        .rfq-section {
            background: linear-gradient(
                135deg,
                var(--primary) 0%,
                var(--primary-dark) 100%
            );

            color: var(--white);
            padding: 60px 0;
        }

        .rfq-wrapper {
            background: var(--white);
            color: var(--text-dark);
            max-width: 720px;
            margin: 0 auto;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .rfq-wrapper h3 {
            font-size: 24px;
            color: var(--primary);
            text-align: center;
            margin-bottom: 6px;
        }

        .rfq-wrapper p {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 25px;
        }

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

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

        label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--primary);
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 14px;
            outline: none;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--primary);
        }

        textarea {
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 15px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #A37E1C;
        }


        /* =========================
           WHATSAPP
        ========================= */

        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25D366;
            color: white;
            border-radius: 50px;
            padding: 12px 22px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1000;
        }


        /* =========================
           FOOTER
        ========================= */

        footer {
            background: var(--primary-dark);
            color: #CBD5E1;
            text-align: center;
            padding: 25px 20px;
            font-size: 13px;
        }

        footer strong {
            color: var(--white);
        }


        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 768px) {

            .hero {
                padding: 65px 0 50px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero p {
                font-size: 15px;
            }

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

            .rfq-wrapper {
                padding: 25px;
            }

            .section-padding {
                padding: 50px 0;
            }

            .section-header h2 {
                font-size: 27px;
            }

            .whatsapp-float {
                right: 15px;
                bottom: 15px;
                padding: 11px 16px;
            }
        }

    
html{scroll-behavior:smooth;scroll-padding-top:100px}body{font-size:16px}.skip{position:absolute;left:12px;top:-80px;background:white;padding:12px;z-index:2000}.skip:focus{top:12px}.topbar{background:var(--primary-dark);color:white;border-bottom:1px solid #ffffff25}.nav{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:18px;padding-bottom:18px}.brand{font-size:21px;letter-spacing:2px;color:white;text-decoration:none;font-weight:800}.brand small{display:block;font-size:10px;letter-spacing:1.6px;font-weight:500;color:#cbd5e1}.navlinks{display:flex;gap:24px;flex-wrap:wrap}.navlinks a{color:white;text-decoration:none;font-size:14px}.hero{background:linear-gradient(120deg,#0f2341,#1a365d);padding:80px 0}.hero h1{font-size:clamp(34px,5vw,58px);max-width:950px;margin:0 auto 24px;line-height:1.15;letter-spacing:-1.5px}.hero h1 em{font-style:normal;color:#e8c562}.hero p{font-size:18px}.badge-main,.btn-primary,.btn-submit{color:#102441}.eyebrow{font-size:13px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:#886615;margin-bottom:12px}.category-nav{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:35px}.category-nav a{padding:9px 15px;border:1px solid var(--border);border-radius:30px;text-decoration:none;color:var(--primary);background:white;font-size:14px}.products-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.category-visual{display:flex;align-items:center;justify-content:space-between;padding:26px;background:#edf1f7;border-bottom:1px solid var(--border)}.category-visual span{font-size:48px;line-height:1}.category-visual small{font-size:12px;color:var(--primary);letter-spacing:2px;font-weight:700}.product-body p{font-size:15px}.product-body h3{font-size:25px}.product-body ul{list-style:none;margin:5px 0 22px;flex:1}.product-body li{padding:12px 0;border-bottom:1px solid var(--border)}.product-pick{font:inherit;border:0;background:none;color:var(--primary);font-weight:700;text-align:left;cursor:pointer;padding:0;text-decoration:underline;text-underline-offset:4px}.product-body li small{display:block;font-size:14px;color:var(--text-muted);margin-top:5px}.btn{text-align:center}.highlight-item h3{font-size:16px;color:var(--primary)}.highlight-item p{font-size:14px}.section-header p{font-size:16px}.table-note{font-size:14px;color:var(--text-muted);margin-top:15px}.pack-card h3{color:var(--primary);margin-bottom:12px}.pack-card p{font-size:15px;color:var(--text-muted)}.rfq-wrapper{max-width:850px}.rfq-wrapper h2{text-align:center;color:var(--primary);font-size:28px;line-height:1.3;margin-bottom:12px}label,input,select,textarea{font-size:16px}input,select,textarea{min-width:0}input:focus-visible,select:focus-visible,textarea:focus-visible,button:focus-visible,a:focus-visible{outline:3px solid #b18a20;outline-offset:4px}.form-row>*{min-width:0}.help{font-size:13px;color:var(--text-muted);margin-top:5px}.rfq-wrapper .privacy{font-size:13px;margin:15px 0;text-align:left}.rfq-wrapper #status{margin:15px 0;color:var(--primary);text-align:left;font-size:14px}.contact-row{display:flex;justify-content:center;gap:20px;flex-wrap:wrap;margin-top:16px}footer{padding-bottom:100px}footer a{color:#e8c562}.whatsapp-float{color:#063019}th[scope=row]{background:transparent;color:var(--primary);white-space:normal}table{min-width:700px}caption{text-align:left;padding:16px;font-weight:600;color:var(--primary)}.btn-primary:hover,.btn-submit:hover{background:#d9b648;border-color:#d9b648}.noscript{padding:20px;background:#fff1c9;color:#102441}.fineprint{text-align:center;color:var(--text-muted);font-size:14px;margin-top:24px}@media(max-width:1000px){.products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.nav{align-items:flex-start;flex-direction:column;gap:14px}.navlinks{gap:18px}.hero{padding:50px 0}.products-grid,.packaging-grid{grid-template-columns:minmax(0,1fr)}.rfq-wrapper{padding:24px 18px}.btn-group .btn{width:100%}.product-body{padding:22px}.brand{font-size:19px}.section-padding{padding:45px 0}.highlights-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 10px}.highlight-item h3{font-size:14px}.highlight-item p{font-size:13px}.whatsapp-float{font-size:13px;padding:10px 14px}}@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}

/* Expanded company, shipping and contact sections. Desktop, tablet and mobile. */
.container{max-width:1280px}.topbar .nav{flex-wrap:wrap;gap:18px}.navlinks{gap:20px;align-items:center}.navlinks a{font-size:14px}.nav-quote{border:1px solid #e8c562;padding:9px 14px;border-radius:5px}.menu-toggle{display:none}.about-section{background:#fff}.about-layout{display:grid;grid-template-columns:1.25fr 1fr;gap:70px;align-items:start}.large-heading{color:var(--primary);font-size:clamp(28px,3vw,40px);line-height:1.2;margin-bottom:24px;letter-spacing:-.7px}.about-layout p{margin-bottom:18px;color:var(--text-muted)}.about-layout .lead{font-size:19px;color:var(--primary)}.text-link{display:inline-block;color:var(--primary);font-weight:700;text-decoration:underline;text-underline-offset:5px;margin-top:15px}.about-panel{background:var(--primary-dark);padding:32px;border-top:5px solid var(--accent);color:white;border-radius:8px}.about-panel .eyebrow{color:#e8c562}.about-panel dl>div{padding:16px 0;border-bottom:1px solid #ffffff25}.about-panel dl>div:last-child{border:0;padding-bottom:0}.about-panel dt{font-size:13px;color:#b8c8de;margin-bottom:5px}.about-panel dd{font-size:16px}.values-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px;margin-top:45px}.values-grid article{border-top:2px solid var(--accent);padding-top:20px}.values-grid h3{font-size:18px;color:var(--primary);margin-bottom:10px}.values-grid p{font-size:15px;color:var(--text-muted)}.shipping-section{background:#edf1f7}.shipping-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.section-number{display:block;font-size:14px;font-weight:800;color:#8c6d13;letter-spacing:2px;margin-bottom:14px}.detail-list{padding-left:20px;margin:16px 0;color:var(--text-muted);font-size:15px}.detail-list li{margin:8px 0}.pack-card ul.detail-list{list-style:disc;padding-left:20px}.pack-card ul.detail-list li{padding:0;border:0}.faq-section{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.faq-layout{display:grid;grid-template-columns:1fr 1.65fr;gap:65px}.faq-layout>div>p{color:var(--text-muted)}.faq-list details{border-bottom:1px solid var(--border)}.faq-list details:first-child{border-top:1px solid var(--border)}.faq-list summary{cursor:pointer;padding:20px 5px;font-weight:600;color:var(--primary)}.faq-list summary:focus-visible{outline:3px solid #b18a20;outline-offset:3px}.faq-list details p{padding:0 5px 22px;color:var(--text-muted);font-size:15px}.contact-section{background:#f8fafc}.contact-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.contact-card{padding:28px;background:white;border:1px solid var(--border);border-radius:10px;overflow-wrap:anywhere}.contact-label{font-size:12px;letter-spacing:1.5px;font-weight:800;color:#8c6d13}.contact-card h3{color:var(--primary);font-size:22px;line-height:1.3;margin:16px 0}.contact-card h3 small{font-size:14px}.phone-display{font-size:23px;font-weight:700;color:var(--primary);text-decoration:none}.contact-card p{font-size:15px;color:var(--text-muted);margin:15px 0}.contact-actions{display:flex;align-items:center;flex-wrap:wrap;gap:15px}.contact-actions .text-link{margin:0}.contact-actions .btn,.contact-quote .btn{font-size:14px;padding:12px 16px}.contact-quote{border-top:4px solid var(--accent)}address{font-style:normal}.footer-grid{text-align:left;display:grid;grid-template-columns:1.4fr .8fr 1fr 1.2fr;gap:35px;padding-top:30px}.footer-grid h2{font-size:15px;color:#fff;margin-bottom:18px}.footer-grid>div>a:not(.brand){display:block;color:#cbd5e1;text-decoration:none;font-size:14px;margin:9px 0}.footer-intro{margin-top:18px;font-size:14px}.footer-grid address{font-size:14px}.footer-bottom{display:flex;justify-content:space-between;gap:25px;text-align:left;border-top:1px solid #ffffff25;margin-top:35px;padding-top:20px;font-size:12px}.footer-bottom a{white-space:nowrap}.footer-grid a:hover{color:#e8c562}.navlinks a:hover{color:#e8c562}
@media(min-width:1100px){.topbar .nav{flex-wrap:nowrap}.brand{font-size:19px}.navlinks{gap:16px}.hero{padding:90px 0}.rfq-wrapper{max-width:960px}}
@media(max-width:1000px){.about-layout{gap:30px}.faq-layout{gap:30px}.contact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.contact-quote{grid-column:1/-1}.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:768px){.about-layout,.faq-layout{grid-template-columns:minmax(0,1fr)}.values-grid{grid-template-columns:minmax(0,1fr);gap:24px}.about-panel{padding:26px}.navlinks{width:100%;gap:12px 20px}.topbar .nav{flex-direction:row;align-items:center}.js .menu-toggle{display:flex;align-items:center;gap:12px;border:1px solid #ffffff60;color:white;background:transparent;padding:10px 14px;border-radius:5px;font:inherit}.js .navlinks{display:none}.js .navlinks.is-open{display:flex}.navlinks a{padding:7px 0}.navlinks .nav-quote{padding:7px 10px}.brand{font-size:18px}.brand small{font-size:9px;letter-spacing:1px}}
@media(max-width:600px){.shipping-grid,.contact-grid,.footer-grid{grid-template-columns:minmax(0,1fr)}.contact-quote{grid-column:auto}.contact-card{padding:24px}.footer-grid{gap:24px}.footer-bottom{flex-direction:column;gap:12px}.footer-bottom a{white-space:normal}.about-layout{gap:24px}.hero h1{letter-spacing:-1px}.values-grid{margin-top:30px}.phone-display{font-size:22px}.faq-list summary{font-size:16px}.menu-toggle{font-size:14px!important}}

/* About Us portrait and official contact details. Image is embedded in this HTML. */
.leadership-card{display:grid;grid-template-columns:300px minmax(0,1fr);margin-top:48px;border:1px solid var(--border);border-radius:12px;overflow:hidden;background:#f8fafc}.leader-photo{background:#dedee0;align-self:stretch}.leader-photo img{display:block;width:100%;height:auto;aspect-ratio:3/4;object-fit:contain}.leader-info{padding:36px 40px;align-self:center}.leader-info h3{font-size:clamp(25px,3vw,34px);line-height:1.2;color:var(--primary);margin-bottom:10px}.leader-info .leader-role{font-weight:700;color:#886615;font-size:16px;margin-bottom:20px}.leader-info>p{color:var(--text-muted);font-size:16px}.leader-contact{display:flex;flex-wrap:wrap;gap:10px 24px;margin:22px 0}.leader-contact a{font-size:16px;color:var(--primary);overflow-wrap:anywhere;text-underline-offset:4px}.leader-contact a:first-child{flex-basis:100%}.leader-actions{display:flex;flex-wrap:wrap;align-items:center;gap:14px 24px}.leader-actions .text-link{margin:0;font-size:15px}.contact-card .phone-display{display:block;margin:7px 0}.contact-email{display:block;color:var(--primary);font-size:16px;overflow-wrap:anywhere;margin:15px 0;text-underline-offset:4px}.footer-email{overflow-wrap:anywhere}.footer-grid>div{min-width:0}@media(max-width:768px){.leadership-card{grid-template-columns:230px minmax(0,1fr)}.leader-info{padding:26px}.leader-actions .btn{padding:12px 16px}}@media(max-width:600px){.leadership-card{grid-template-columns:minmax(0,1fr);margin-top:30px}.leader-photo{padding:0 24px}.leader-photo img{max-width:300px;margin:0 auto}.leader-info{padding:25px 22px}.leader-actions{align-items:flex-start;flex-direction:column}.leader-info h3{font-size:27px}}
.logo-brand{display:block;background:white;border-radius:7px;line-height:0;flex-shrink:0;overflow:hidden}.logo-brand img{width:128px;height:128px;display:block;object-fit:contain}.topbar .nav{padding-top:12px;padding-bottom:12px}.footer-grid .logo-brand{width:max-content}.footer-grid .logo-brand img{width:140px;height:140px}@media(max-width:768px){.logo-brand img{width:104px;height:104px}.topbar .nav{gap:14px}}.product-body li.photo-product{display:grid;grid-template-columns:112px minmax(0,1fr);gap:16px;align-items:start;padding:18px 0}.product-card img.product-photo{display:block;width:112px;height:112px;object-fit:contain;background:#fff;border:1px solid #e2e8f0;border-radius:8px;padding:4px}.photo-product-copy{min-width:0}.photo-product-copy small{line-height:1.5}.photo-product-copy .product-pick{font-size:16px}.photo-credits{margin-top:32px;text-align:left;font-size:12px;color:#cbd5e1}.photo-credits summary{cursor:pointer}.photo-credits p{margin:12px 0}.photo-credits ul{display:flex;flex-wrap:wrap;list-style:none;gap:10px 20px}.photo-credits a{font-size:12px}@media(min-width:1001px) and (max-width:1150px){.product-body li.photo-product{grid-template-columns:88px minmax(0,1fr);gap:12px}.product-card img.product-photo{width:88px;height:100px}}@media(max-width:360px){.product-body li.photo-product{grid-template-columns:88px minmax(0,1fr);gap:12px}.product-card img.product-photo{width:88px;height:100px}}
/* Separate navigable page views. Every section belongs to one page. */
[hidden]{display:none!important}.navlinks a[aria-current="page"]{color:#e8c562;text-decoration:underline;text-underline-offset:7px}.page-breadcrumb{background:#edf1f7;border-bottom:1px solid var(--border);padding:13px 0;font-size:14px;color:var(--primary)}.page-breadcrumb a{color:var(--primary);text-decoration:none}.page-breadcrumb span{margin:0 10px}.home-shipment{max-width:1100px;margin:36px auto 0;border-radius:12px;overflow:hidden;border:1px solid #ffffff30;background:#fff}.home-shipment img{display:block;width:100%;height:320px;object-fit:cover}.home-shipment figcaption{padding:9px 16px;color:#cbd5e1;background:#102441;font-size:12px;text-align:left}.resource-section{padding:45px 0 55px;background:#fff}.resource-section .section-header{margin-bottom:25px}.resource-section h2{font-size:25px}.resource-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}.resource-card{display:flex;align-items:center;flex-direction:column;padding:18px;border:1px solid var(--border);border-radius:8px;text-align:center;text-decoration:none;color:var(--primary);background:#fff}.resource-card img{width:130px;height:90px;object-fit:contain;display:block;margin-bottom:12px}.resource-card strong{font-size:17px}.resource-card small{display:block;color:var(--text-muted);font-size:13px;margin-top:6px}.resource-note{font-size:13px;color:var(--text-muted);text-align:center;margin-top:20px}.home-shipment a{color:#e8c562}@media(max-width:600px){.home-shipment img{height:220px}.resource-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.resource-card{padding:14px 8px}.resource-card img{width:100px;height:75px}}

.product-pick{text-decoration:none!important}.product-pick:hover{text-decoration:underline!important}.product-photo-link{display:block;border-radius:8px}.product-body li.photo-product{position:relative;padding-bottom:34px}.view-product{font-size:13px;font-weight:700;color:var(--primary);grid-column:2;margin-top:-6px}.product-trail{display:flex;gap:12px;flex-wrap:wrap;font-size:14px;margin-bottom:28px;color:var(--text-muted)}.product-trail a{color:var(--primary)}.detail-hero{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.12fr);gap:52px;align-items:center}.detail-picture{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden}.detail-picture img{display:block;width:100%;height:370px;object-fit:contain;padding:20px}.detail-picture figcaption{background:#f1f5f9;padding:12px 18px;font-size:12px;color:var(--text-muted)}.detail-intro h1{font-size:clamp(32px,4vw,48px);color:var(--primary);line-height:1.1;letter-spacing:-1px;margin-bottom:18px}.detail-intro p{color:var(--text-muted);margin:16px 0}.detail-intro .detail-tagline{font-size:21px;color:var(--primary);font-weight:600}.detail-chips{display:flex;flex-wrap:wrap;gap:8px;margin:22px 0}.detail-chips span{font-size:13px;padding:6px 10px;border:1px solid #d6dfeb;border-radius:6px;background:#edf1f7;color:var(--primary)}.detail-cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:25px}.detail-sample{border:1px solid var(--primary);background:#fff;color:var(--primary)}.detail-small{font-size:13px!important;color:var(--text-muted);line-height:1.6;margin-top:12px}.detail-body-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;margin-top:40px}.detail-panel{background:#fff;border:1px solid var(--border);padding:28px;border-radius:10px;min-width:0}.detail-panel h2{font-size:22px;color:var(--primary);margin-bottom:15px;line-height:1.25}.spec-dl>div{display:grid;grid-template-columns:145px minmax(0,1fr);gap:16px;padding:15px 0;border-bottom:1px solid var(--border)}.spec-dl dt{font-weight:600;color:var(--primary);font-size:14px}.spec-dl dd{color:var(--text-muted);font-size:15px}.hs-panel{border-top:4px solid var(--accent)}.hs-dl>div{padding:13px 0;border-bottom:1px solid var(--border)}.hs-dl dt{font-size:24px;font-weight:800;letter-spacing:1px;color:var(--primary)}.hs-dl dd{font-size:14px;color:var(--text-muted);margin-top:4px}.hs-panel .text-link{font-size:13px}.detail-bottom-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:24px}.detail-bottom-grid p{font-size:15px;color:var(--text-muted)}.detail-panel button.text-link{border:0;background:none;text-align:left;cursor:pointer;font-size:15px}.related-products{margin-top:36px;border-top:1px solid var(--border);padding-top:25px}.related-products h2{font-size:21px;color:var(--primary);margin-bottom:18px}.related-products a{display:inline-block;margin:0 12px 12px 0;border:1px solid var(--border);padding:12px 18px;border-radius:6px;color:var(--primary);text-decoration:none;background:#fff}.product-detail-page h1:focus{outline:0}@media(max-width:900px){.detail-hero{gap:26px}.detail-bottom-grid{grid-template-columns:minmax(0,1fr)}.spec-dl>div{grid-template-columns:minmax(0,1fr);gap:5px}}@media(max-width:700px){.detail-hero,.detail-body-grid{grid-template-columns:minmax(0,1fr)}.detail-picture img{height:280px}.detail-panel{padding:22px}.detail-cta{flex-direction:column}.detail-cta .btn{width:100%}.detail-body-grid{margin-top:26px}.detail-intro h1{font-size:34px}}

.products-dropdown{position:relative}.products-trigger{font:inherit;font-size:14px;color:white;background:transparent;border:0;cursor:pointer;padding:10px 0;display:flex;gap:7px;align-items:center}.products-panel{position:absolute;top:100%;left:-140px;width:640px;max-width:calc(100vw - 40px);padding:18px;background:#fff;color:var(--primary);border:1px solid var(--border);border-top:3px solid var(--accent);border-radius:8px;box-shadow:0 16px 40px #0f234133;z-index:1200}.navlinks .products-panel a{color:var(--primary)!important;text-decoration:none!important;padding:12px;display:block;border-radius:6px}.navlinks .products-panel a:hover,.navlinks .products-panel a:focus-visible{background:#edf1f7}.category-menu-grid{display:grid;grid-template-columns:1fr 1fr;gap:4px}.category-menu-grid strong{font-size:15px;display:block}.category-menu-grid small{display:block;font-size:12px;color:var(--text-muted);line-height:1.5;margin-top:4px}.all-categories{border-bottom:1px solid var(--border);margin-bottom:8px;font-weight:700}.category-overview-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:25px}.category-overview-card{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;text-decoration:none;color:var(--primary);box-shadow:0 4px 12px #0f234108}.category-cover{background:#fff;border-bottom:1px solid var(--border)}.category-cover img{width:100%;height:200px;display:block;object-fit:contain;padding:15px}.category-overview-card>div:last-child{padding:24px}.category-overview-card h3{font-size:22px;margin-bottom:10px}.category-overview-card p{font-size:15px;color:var(--text-muted);margin-bottom:16px}.category-overview-card span{font-size:14px;font-weight:700}.category-back{display:inline-block;color:var(--primary);margin-bottom:24px}.category-page .product-card{border:0;box-shadow:none;background:transparent}.category-page .category-visual{border-radius:10px;max-width:180px;margin-bottom:20px}.category-page .product-body{padding:0}.category-page .product-body>h3{font-size:36px;line-height:1.2}.category-page .product-body>p{max-width:800px;font-size:17px}.category-page .product-body>ul{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.category-page .product-body li.photo-product{display:flex;flex-direction:column;gap:14px;padding:20px;background:#fff;border:1px solid var(--border);border-radius:10px}.category-page .product-photo-link{width:100%}.category-page .product-card img.product-photo{width:100%;height:210px;object-fit:contain;border:0;padding:5px}.category-page .product-pick{font-size:22px}.category-page .photo-product-copy small{font-size:15px}.category-page .view-product{margin-top:auto;font-size:15px;padding-top:8px}.category-page .category-pick{align-self:flex-start;margin-top:10px}.home-port-line{max-width:none!important;margin:25px auto 0!important;font-size:15px!important;color:#e8c562!important}.port-options{background:#fff;border:1px solid var(--border);border-left:4px solid var(--accent);padding:28px;border-radius:8px;margin-bottom:28px}.port-options h3{font-size:25px;color:var(--primary);margin-bottom:12px}.port-options>p{color:var(--text-muted)}.port-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px;margin:22px 0}.port-grid>div{padding:15px;background:#edf1f7;border-radius:6px}.port-grid strong,.port-grid span{display:block;color:var(--primary)}.port-grid span{font-size:13px;color:var(--text-muted);margin-top:5px}@media(max-width:1000px){.category-overview-grid,.category-page .product-body>ul{grid-template-columns:repeat(2,minmax(0,1fr))}.products-panel{left:-180px}}@media(max-width:768px){.products-dropdown{width:100%}.products-panel{position:static;width:100%;max-width:none;margin-top:8px;box-shadow:none}.products-trigger{font-size:16px}.category-menu-grid{grid-template-columns:1fr}.navlinks .products-panel a{padding:12px!important}}@media(max-width:600px){.category-overview-grid,.category-page .product-body>ul,.port-grid{grid-template-columns:minmax(0,1fr)}.port-options{padding:22px}.category-page .product-body>h3{font-size:30px}}
.hs-status{padding:9px 12px;background:#edf1f7;color:var(--primary);font-size:13px;border-radius:5px;margin:12px 0}.product-search{max-width:850px;margin:0 auto 32px;padding:22px;background:#fff;border:1px solid var(--border);border-radius:10px}.product-search-row{display:flex;gap:10px}.product-search-row input{min-width:0;flex:1}.product-search-row button{background:var(--primary);color:#fff;border:0;border-radius:6px;padding:10px 18px;font:inherit;cursor:pointer}.product-search>p{font-size:13px;color:var(--text-muted);margin-top:12px}.product-search ul{list-style:none;margin-top:15px;max-height:380px;overflow:auto;border-top:1px solid var(--border)}.product-search li a{display:flex;justify-content:space-between;gap:15px;padding:14px 5px;border-bottom:1px solid var(--border);text-decoration:none;color:var(--primary)}.product-search li a:hover{background:#edf1f7}.product-search li span{font-size:13px;color:var(--text-muted)}@media(max-width:600px){.product-search{padding:17px}.product-search li a{flex-direction:column;gap:5px}}

/* Final buyer-facing presentation and accessible responsive controls. */
body{font-family:Arial,Helvetica,sans-serif}*{font-family:inherit}img{max-width:100%}a,button{-webkit-tap-highlight-color:transparent}button{touch-action:manipulation}
.hero-layout{display:grid;grid-template-columns:1.05fr 1fr;gap:52px;align-items:center}.hero{text-align:left;padding:64px 0;background:radial-gradient(ellipse at 95% 0%,#284d73 0%,#122b4b 48%,#0f2341 100%)}.hero h1{font-size:clamp(34px,4.1vw,54px);letter-spacing:-1.2px;margin:0 0 24px}.hero p{font-size:17px;margin-left:0}.hero .btn-group{justify-content:flex-start}.hero .badge-main{font-size:11px;letter-spacing:1px}.hero .home-port-line{font-size:14px;line-height:1.9;margin:26px 0 0;max-width:100%}.hero .home-shipment{width:100%;margin:0;border:1px solid #ffffff35;box-shadow:0 22px 70px #0005;border-radius:20px;overflow:hidden;background:#102441}.hero .home-shipment img{width:100%;height:450px;object-fit:cover;display:block}.hero .home-shipment figcaption{position:static;padding:14px 18px;background:#102441;color:#dbe7f4;text-align:left;font-size:12px}
.buyer-journey{background:#fff}.journey-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.journey-grid article{padding:28px;border:1px solid var(--border);border-radius:14px;background:linear-gradient(145deg,#fff,#f7f9fc)}.journey-grid span{color:#876313;font-size:12px;font-weight:700;letter-spacing:1.5px}.journey-grid h3{font-size:22px;color:var(--primary);margin:14px 0 10px}.journey-grid p{color:var(--text-muted);font-size:15px}.journey-grid a{display:inline-block;margin-top:20px;color:var(--primary);font-weight:700;text-underline-offset:4px}.email-enquiry{width:100%;margin-top:12px;color:var(--primary);background:#f5f7fa;border:1px solid #a8b7ca}.email-enquiry:hover{background:#e8eef5}.category-overview-card,.photo-product{transition:box-shadow .2s,border-color .2s}.category-overview-card:hover,.photo-product:hover{box-shadow:0 10px 28px #10244114;border-color:#bd9d4f}.product-trail{flex-wrap:wrap}.detail-small,.hs-dl dd{overflow-wrap:anywhere}.whatsapp-float{bottom:max(18px,env(safe-area-inset-bottom))}
@media(max-width:950px){.hero-layout{grid-template-columns:minmax(0,1fr);gap:32px}.hero .home-shipment img{height:340px}.hero h1{max-width:720px}.journey-grid{grid-template-columns:minmax(0,1fr)}}
@media(max-width:600px){.hero{padding:38px 0}.hero .home-shipment img{height:250px}.hero .badge-main{font-size:10px;letter-spacing:.5px}.hero h1{font-size:35px;letter-spacing:-.8px}.hero .btn{width:100%}.journey-grid article{padding:24px}.btn,button{min-height:44px}.navlinks a{min-height:44px;display:inline-flex;align-items:center}.category-menu-grid a{display:flex}.hero .home-port-line{font-size:13px}}

/* Collection shortcuts and final interaction refinements. */
.home-collections{margin-top:30px;padding-top:24px;border-top:1px solid #ffffff30}.hero .home-collections p{font-size:11px;letter-spacing:1.8px;color:#dbe7f4;margin:0 0 12px}.home-collections>div{display:flex;flex-wrap:wrap;gap:9px}.home-collections a{display:inline-flex;align-items:center;gap:14px;min-height:40px;padding:8px 12px;background:#ffffff09;border:1px solid #ffffff35;border-radius:7px;font-size:12px;color:#fff;text-decoration:none}.home-collections a:hover,.home-collections a:focus-visible{background:#e8c562;color:#102441;border-color:#e8c562}.home-collections span{color:#e8c562}.home-collections a:hover span,.home-collections a:focus-visible span{color:inherit}.products-trigger.is-current{color:#e8c562}.category-overview-card:focus-visible,.photo-product:focus-within{outline:3px solid #b18a20;outline-offset:4px}.category-overview-card span{display:inline-block;border-bottom:1px solid #c59b27;padding-bottom:4px}.product-search{scroll-margin-top:24px}.hero .home-shipment img{height:100%;min-height:420px;max-height:540px}.hero .home-shipment{align-self:center}.email-enquiry:disabled{opacity:.6;cursor:wait}
@media(max-width:950px){.hero .home-shipment img{height:340px;min-height:0;max-height:none}}@media(max-width:600px){.home-collections a{min-height:44px;flex:1 1 44%;justify-content:space-between;font-size:12px}.hero .home-shipment img{height:250px}.home-collections{margin-top:24px}}

.brochure-collection{display:flex;flex-direction:column;min-width:0;gap:12px}.brochure-collection .category-overview-card{display:block;flex:1}.brochure-download{display:inline-flex;justify-content:center;align-items:center;gap:16px;min-height:46px;padding:12px 18px;border:1px solid #b28a32;border-radius:8px;background:#fcf6e9;color:#102441;font-size:14px;font-weight:700;cursor:pointer;text-align:center}.brochure-download:hover{background:#f0dfb4}.brochure-download:disabled{opacity:.6;cursor:wait}.brochure-download span{font-size:20px}.category-brochure-bar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;margin-bottom:24px;background:#fff;border:1px solid #e2e8f0;border-radius:10px}.category-brochure-bar>span{font-size:15px;color:#536277}@media(max-width:600px){.category-brochure-bar{flex-direction:column;align-items:stretch;padding:18px}.category-brochure-bar>span{text-align:center}}

/* Standalone emblem and readable live-text company name. */
.logo-brand{display:inline-flex;align-items:center;gap:14px;max-width:100%;text-decoration:none;flex-shrink:0}.logo-brand img{width:76px!important;height:76px!important;object-fit:contain;display:block;border-radius:10px;background:white;padding:3px}.brand-wordmark{display:block;min-width:0}.brand-wordmark strong{display:block;font-size:25px;font-weight:800;letter-spacing:.4px;line-height:1.15;color:white;white-space:nowrap}.brand-wordmark small{margin-top:7px;font-size:10px;font-weight:600;letter-spacing:1.7px;color:#e8c562}.footer-grid .logo-brand{flex-direction:column;align-items:flex-start}.footer-grid .brand-wordmark strong{font-size:22px}@media(max-width:600px){.logo-brand{gap:9px}.logo-brand img{width:56px!important;height:56px!important;border-radius:7px}.brand-wordmark strong{font-size:20px;letter-spacing:0}.brand-wordmark small{font-size:8px;letter-spacing:1px}.topbar .nav{gap:14px}.footer-grid .logo-brand{flex-direction:row;align-items:center}}

/* Explicit contrasting colors override the old white-on-white brand styles. */
.topbar .nav{flex-wrap:wrap}.brand.logo-brand{background:#fff;line-height:1.3;padding:10px 14px;overflow:visible;border:1px solid #e5d4a5;border-radius:12px;gap:12px;box-shadow:0 3px 16px #00000014}.brand.logo-brand .brand-wordmark strong{font-size:26px;font-weight:900;line-height:1.12;letter-spacing:.2px;color:#102441;white-space:nowrap}.brand.logo-brand .brand-name-first{color:#102441}.brand.logo-brand .brand-name-last{color:#946400}.brand.logo-brand .brand-wordmark small{color:#536277;line-height:1.4;margin-top:7px;letter-spacing:1.4px}.brand.logo-brand img{padding:0;background:#fff}.footer-grid .brand.logo-brand{width:100%;align-items:flex-start;box-sizing:border-box}.footer-grid .brand.logo-brand .brand-wordmark strong{font-size:20px;white-space:normal}.hero .home-company-name{font-size:clamp(36px,4.8vw,64px);font-weight:900;line-height:1.08;letter-spacing:-1px;margin:0 0 14px;color:#fff;text-shadow:0 3px 12px #0003}.home-company-name>span{display:inline-block}.hero .home-company-name .home-company-exim{color:#f2c75c}.hero .home-company-role{color:#f2cf7a;font-size:12px;letter-spacing:2.2px;font-weight:700;margin:0 0 24px}.hero .home-company-promise{color:#e5ecf6;font-size:clamp(20px,2.2vw,27px);font-weight:600;line-height:1.4;margin-bottom:20px}
@media(max-width:600px){.brand.logo-brand{padding:8px 10px;gap:8px;max-width:100%;width:auto}.brand.logo-brand img{width:48px!important;height:48px!important}.brand.logo-brand .brand-wordmark strong{font-size:20px;letter-spacing:0;white-space:normal}.brand.logo-brand .brand-wordmark small{font-size:8px;letter-spacing:1px}.hero .home-company-name{font-size:clamp(34px,9vw,46px);letter-spacing:-.6px}.hero .home-company-role{font-size:10px;letter-spacing:1.6px}.footer-grid .brand.logo-brand{align-items:center}}

.download-status{position:fixed;left:20px;bottom:22px;max-width:min(470px,calc(100vw - 40px));padding:14px 18px;border:1px solid #d6b75c;border-radius:9px;background:#fff;color:#102441;box-shadow:0 5px 24px #0002;z-index:1300;font-size:14px;line-height:1.5}@media(max-width:600px){.download-status{bottom:80px;left:16px;max-width:calc(100vw - 32px)}}

/* Final upload review: readable input sizing and reduced-motion support. */
input,select,textarea{max-width:100%}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}
@media(max-width:380px){.container{padding-left:14px;padding-right:14px}.brand{max-width:100%}}

.form-trap{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.consent-row{display:flex;align-items:flex-start;gap:10px;margin:18px 0}.consent-row input{width:20px;flex:0 0 20px;margin-top:4px}.consent-row label{font-weight:400}.btn-submit:disabled{opacity:.65;cursor:wait}.status-error{color:#9a2418!important}.status-success{color:#146c43!important}.brochure-button{display:inline-block;text-decoration:none;text-align:center} .privacy-content{max-width:850px;margin:auto}.privacy-content h2{margin:25px 0 8px}.privacy-content p{margin-bottom:15px}
