/* =============================================
LAHORE ELECTRONICS – HAIER STORE PAGE
No header / footer — page content only
Colors: Navy #0d1b2a | Red #e63946 | White #fff
Font: Barlow Condensed (headings) + Barlow (body)
============================================= */
:root {
–navy: #0d1b2a;
–navy-mid: #1a2d42;
–navy-light: #243b55;
–red: #e63946;
–red-dark: #c1121f;
–white: #ffffff;
–off-white: #f5f7fa;
–gray-light: #eef1f6;
–gray-mid: #8a9bb0;
–gray-dark: #475569;
–gold: #f4a916;
–font-h: ‘Barlow Condensed’, sans-serif;
–font-b: ‘Barlow’, sans-serif;
–r-sm: 6px;
–r-md: 10px;
–sh-sm: 0 2px 8px rgba(13,27,42,.08);
–sh-md: 0 6px 20px rgba(13,27,42,.13);
–sh-lg: 0 12px 40px rgba(13,27,42,.18);
–ease: .22s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(–font-b);
font-size: 15px;
color: var(–navy);
background: var(–white);
line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container {
width: 100%;
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
}
/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
background: var(–gray-light);
padding: 9px 0;
font-size: 12.5px;
color: var(–gray-mid);
border-bottom: 1px solid #dde3ec;
}
.breadcrumb-bar a { color: var(–gray-dark); transition: color var(–ease); }
.breadcrumb-bar a:hover { color: var(–red); }
.bc-sep { margin: 0 7px; color: var(–gray-mid); }
/* ─── PAGE HERO ─── */
.page-hero {
background: var(–navy);
position: relative;
overflow: hidden;
}
.page-hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 65% 50%, rgba(230,57,70,.14) 0%, transparent 55%),
linear-gradient(130deg, #0d1b2a 0%, #1a3a5c 100%);
}
.page-hero-inner {
position: relative;
z-index: 2;
display: flex;
align-items: center;
gap: 0;
min-height: 380px;
}
.page-hero-text {
flex: 1;
padding: 52px 40px 52px 0;
max-width: 620px;
}
.hero-label {
display: inline-block;
background: var(–red);
color: var(–white);
font-family: var(–font-h);
font-size: 11px;
font-weight: 700;
letter-spacing: 1.8px;
text-transform: uppercase;
padding: 4px 14px;
border-radius: 3px;
margin-bottom: 18px;
}
.hero-h1 {
font-family: var(–font-h);
font-weight: 800;
line-height: .92;
margin-bottom: 20px;
}
.h1-haier {
display: block;
font-size: clamp(68px, 8vw, 110px);
color: var(–white);
letter-spacing: -1px;
}
.h1-store {
display: block;
font-size: clamp(36px, 4.5vw, 64px);
color: var(–red);
letter-spacing: 5px;
}
.hero-desc {
color: rgba(255,255,255,.75);
font-size: 14.5px;
line-height: 1.75;
margin-bottom: 24px;
}
.hero-desc a { color: var(–gold); }
.hero-desc strong { color: var(–white); }
.hero-trust-bar {
display: flex;
flex-wrap: wrap;
gap: 14px;
font-size: 12.5px;
color: rgba(255,255,255,.6);
}
.page-hero-img-wrap {
flex: 0 0 auto;
width: 40%;
min-height: 380px;
overflow: hidden;
}
.page-hero-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: .5;
mix-blend-mode: luminosity;
}
/* ─── QUICK BAR ─── */
.quick-bar {
background: var(–navy-mid);
padding: 12px 0;
}
.quick-bar-links {
display: flex;
flex-wrap: wrap;
gap: 7px;
justify-content: center;
}
.quick-bar-links a {
font-family: var(–font-h);
font-size: 12px;
font-weight: 600;
letter-spacing: .5px;
text-transform: uppercase;
color: rgba(255,255,255,.7);
padding: 4px 11px;
border: 1px solid rgba(255,255,255,.12);
border-radius: 3px;
transition: background var(–ease), color var(–ease), border-color var(–ease);
white-space: nowrap;
}
.quick-bar-links a:hover { background: var(–red); color: var(–white); border-color: var(–red); }
.quick-bar-links .ext-link { color: var(–gold); border-color: rgba(244,169,22,.3); }
.quick-bar-links .ext-link:hover { background: var(–gold); color: var(–navy); border-color: var(–gold); }
/* ─── SECTION HEADERS ─── */
.sec-head { text-align: center; margin-bottom: 36px; }
.sec-title {
font-family: var(–font-h);
font-size: clamp(26px, 3.5vw, 38px);
font-weight: 800;
color: var(–navy);
letter-spacing: -.4px;
margin-bottom: 6px;
}
.sec-sub { font-size: 14.5px; color: var(–gray-dark); }
.sec-sub a { color: var(–red); }
/* ─── CATEGORY TILES (homepage style) ─── */
.cats-section {
padding: 64px 0 72px;
background: var(–off-white);
}
.cat-tiles {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
gap: 16px;
}
.cat-tile {
display: flex;
flex-direction: column;
align-items: center;
background: var(–white);
border: 1px solid var(–gray-light);
border-radius: var(–r-md);
overflow: hidden;
transition: box-shadow var(–ease), transform var(–ease), border-color var(–ease);
box-shadow: var(–sh-sm);
cursor: pointer;
text-align: center;
}
.cat-tile:hover {
box-shadow: var(–sh-md);
transform: translateY(-3px);
border-color: var(–red);
}
.cat-tile-img {
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
background: var(–gray-light);
}
.cat-tile-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .4s ease;
}
.cat-tile:hover .cat-tile-img img { transform: scale(1.07); }
.cat-tile-img–icon {
display: flex;
align-items: center;
justify-content: center;
}
.tile-icon { font-size: 48px; }
.cat-tile-name {
display: block;
width: 100%;
padding: 10px 8px 12px;
font-family: var(–font-h);
font-size: 13.5px;
font-weight: 700;
color: var(–navy);
text-transform: uppercase;
letter-spacing: .3px;
line-height: 1.25;
border-top: 2px solid transparent;
transition: color var(–ease), border-color var(–ease);
}
.cat-tile:hover .cat-tile-name { color: var(–red); border-top-color: var(–red); }
/* ─── PRODUCT SECTIONS ─── */
.product-section { padding: 64px 0 72px; background: var(–white); }
.product-section–alt { background: var(–off-white); }
.ps-banner {
margin-bottom: 28px;
border-radius: var(–r-sm);
overflow: hidden;
}
.ps-banner img { width: 100%; height: auto; display: block; }
.ps-header { margin-bottom: 32px; }
.ps-title {
font-family: var(–font-h);
font-size: clamp(24px, 3vw, 34px);
font-weight: 800;
color: var(–navy);
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 3px solid var(–red);
display: inline-block;
}
.ps-desc {
font-size: 14.5px;
color: var(–gray-dark);
line-height: 1.8;
max-width: 960px;
}
.ps-desc a { color: var(–red); font-weight: 500; }
.ps-desc a:hover { text-decoration: underline; }
.ps-desc strong { color: var(–navy); font-weight: 600; }
.ps-cols {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-bottom: 28px;
}
.ps-col {
background: var(–white);
border: 1px solid var(–gray-light);
border-radius: var(–r-md);
padding: 22px 20px;
box-shadow: var(–sh-sm);
}
.product-section–alt .ps-col { background: var(–white); }
.ps-col-title {
font-family: var(–font-h);
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .4px;
color: var(–navy);
margin-bottom: 14px;
padding-bottom: 8px;
border-bottom: 2px solid var(–red);
}
.ps-list li {
padding: 6px 0;
border-bottom: 1px dashed var(–gray-light);
font-size: 13.5px;
}
.ps-list li:last-child { border-bottom: none; }
.ps-list li a {
color: var(–gray-dark);
transition: color var(–ease), padding-left var(–ease);
display: block;
}
.ps-list li a:hover { color: var(–red); padding-left: 4px; }
.ps-list–plain li { border-bottom: none; padding: 5px 0; color: var(–gray-dark); }
.ps-footer {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.btn-more {
display: inline-block;
font-family: var(–font-h);
font-size: 13px;
font-weight: 700;
letter-spacing: .5px;
text-transform: uppercase;
color: var(–red);
padding: 9px 20px;
border: 2px solid var(–red);
border-radius: var(–r-sm);
transition: background var(–ease), color var(–ease);
}
.btn-more:hover { background: var(–red); color: var(–white); }
/* ─── SEO SECTION ─── */
.seo-section {
padding: 72px 0;
background: var(–navy);
}
.seo-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
}
.seo-block {
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.1);
border-radius: var(–r-md);
padding: 28px 26px;
transition: border-color var(–ease), background var(–ease);
}
.seo-block:hover { border-color: rgba(230,57,70,.5); background: rgba(255,255,255,.07); }
.seo-block h2 {
font-family: var(–font-h);
font-size: 19px;
font-weight: 700;
color: var(–white);
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 2px solid var(–red);
line-height: 1.3;
}
.seo-block p {
font-size: 13.5px;
color: rgba(255,255,255,.65);
line-height: 1.8;
margin-bottom: 18px;
}
.seo-block p a { color: var(–gold); font-weight: 500; }
.seo-block p a:hover { text-decoration: underline; }
.seo-block p strong { color: rgba(255,255,255,.9); }
.seo-tags {
display: flex;
flex-wrap: wrap;
gap: 7px;
}
.seo-tags a {
font-size: 11.5px;
font-weight: 600;
color: rgba(255,255,255,.7);
padding: 4px 10px;
background: rgba(255,255,255,.07);
border: 1px solid rgba(255,255,255,.12);
border-radius: 4px;
transition: background var(–ease), color var(–ease);
}
.seo-tags a:hover { background: var(–red); color: var(–white); border-color: var(–red); }
/* ─── WHY SECTION ─── */
.why-section {
padding: 72px 0;
background: var(–white);
}
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.why-card {
background: var(–off-white);
border: 1px solid var(–gray-light);
border-radius: var(–r-md);
padding: 28px 22px;
transition: border-color var(–ease), box-shadow var(–ease), transform var(–ease);
}
.why-card:hover {
border-color: var(–red);
box-shadow: var(–sh-md);
transform: translateY(-3px);
}
.why-icon { font-size: 34px; margin-bottom: 12px; display: block; }
.why-card h3 {
font-family: var(–font-h);
font-size: 17px;
font-weight: 700;
color: var(–navy);
margin-bottom: 8px;
}
.why-card p { font-size: 13.5px; color: var(–gray-dark); line-height: 1.65; }
.why-card p a { color: var(–red); }
.why-card p a:hover { text-decoration: underline; }
.why-card p strong { color: var(–navy); }
/* ─── CTA STRIP ─── */
.cta-strip {
padding: 56px 0;
background: linear-gradient(130deg, var(–red-dark), var(–red));
}
.cta-inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 28px;
}
.cta-inner h2 {
font-family: var(–font-h);
font-size: clamp(20px, 3vw, 30px);
font-weight: 800;
color: var(–white);
margin-bottom: 6px;
}
.cta-inner h2 strong { color: var(–gold); }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 14px; }
.cta-inner p a { color: var(–gold); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: var(–font-h);
font-weight: 700;
font-size: 14px;
letter-spacing: .6px;
text-transform: uppercase;
padding: 12px 26px;
border-radius: var(–r-sm);
cursor: pointer;
transition: background var(–ease), color var(–ease), box-shadow var(–ease);
border: 2px solid transparent;
}
.btn-white { background: var(–white); color: var(–red); border-color: var(–white); }
.btn-white:hover { background: var(–navy); color: var(–white); border-color: var(–navy); }
.btn-outline-white { background: transparent; color: var(–white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: var(–white); color: var(–red); }
/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
.ps-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
.page-hero-inner { flex-direction: column; }
.page-hero-text { padding: 40px 0 32px; max-width: 100%; }
.page-hero-img-wrap { width: 100%; min-height: 200px; order: -1; }
.seo-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: repeat(2, 1fr); }
.cat-tiles { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 680px) {
.ps-cols { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; }
.cta-inner { flex-direction: column; text-align: center; }
.cta-btns { justify-content: center; }
.quick-bar-links { gap: 5px; }
.hero-trust-bar { flex-direction: column; gap: 6px; }
.h1-haier { font-size: 56px; }
.h1-store { font-size: 30px; }
}
@media (max-width: 440px) {
.cat-tiles { grid-template-columns: repeat(3, 1fr); }
}
/* =============================================
LAHORE ELECTRONICS – HAIER STORE
script.js
============================================= */
(function () {
‘use strict’;
/* ─── SCROLL REVEAL ─── */
const revealEls = [
‘.cat-tile’, ‘.ps-col’, ‘.seo-block’,
‘.why-card’, ‘.ps-header’, ‘.sec-head’
];
revealEls.forEach(sel => {
document.querySelectorAll(sel).forEach((el, i) => {
el.classList.add(‘reveal’);
const d = i % 4;
if (d) el.classList.add(‘d’ + d);
});
});
const ro = new IntersectionObserver(entries => {
entries.forEach(e => {
if (e.isIntersecting) { e.target.classList.add(‘in’); ro.unobserve(e.target); }
});
}, { threshold: 0.1, rootMargin: ‘0px 0px -30px 0px’ });
document.querySelectorAll(‘.reveal’).forEach(el => ro.observe(el));
/* ─── SMOOTH ANCHOR SCROLL ─── */
document.querySelectorAll(‘a[href^=”#”]’).forEach(a => {
a.addEventListener(‘click’, function (e) {
const t = document.querySelector(this.getAttribute(‘href’));
if (t) { e.preventDefault(); window.scrollTo({ top: t.getBoundingClientRect().top + scrollY – 20, behavior: ‘smooth’ }); }
});
});
/* ─── CAT TILE HOVER PERF ─── */
document.querySelectorAll(‘.cat-tile, .ps-col, .why-card, .seo-block’).forEach(el => {
el.addEventListener(‘mouseenter’, () => { el.style.willChange = ‘transform, box-shadow’; });
el.addEventListener(‘mouseleave’, () => { el.style.willChange = ”; });
});
})();
{“@context”:”https://schema.org”,”@type”:”BreadcrumbList”,”itemListElement”:[
{“@type”:”ListItem”,”position”:1,”name”:”Home”,”item”:”https://lahorelectronics.com/”},
{“@type”:”ListItem”,”position”:2,”name”:”Haier Store”,”item”:”https://lahorelectronics.com/haier-store/”}
]}
{“@context”:”https://schema.org”,”@type”:”Store”,”name”:”Lahore Electronics – Haier Store”,”url”:”https://lahorelectronics.com/haier-store/”,”description”:”Authorized Haier appliance dealer in Pakistan. Buy Haier AC, refrigerator, washing machine, freezer and more.”,”image”:”https://lahorelectronics.com/wp-content/uploads/2023/01/Lahore-Electronics-small.png”,”telephone”:”+92-3478467860″,”address”:{“@type”:”PostalAddress”,”addressCountry”:”PK”,”addressLocality”:”Lahore”,”addressRegion”:”Punjab”},”brand”:{“@type”:”Brand”,”name”:”Haier”},”openingHours”:”Mo-Su 00:00-23:59″,”priceRange”:”₨₨”}
Authorized Haier Dealer — Pakistan
Haier Store
Welcome to Lahore Electronics’ Haier Store — Pakistan’s trusted source for 100% genuine
Haier home appliances.
Shop the complete range of Haier air conditioners,
Haier refrigerators,
Haier washing machines,
Haier deep freezers,
Haier LED TVs and
Haier kitchen appliances —
all at official Haier company prices with full brand warranty and nationwide delivery.

Shop by Category
Browse every Haier product range available at Lahore Electronics

Haier Air Conditioners
Haier air conditioners are Pakistan’s most trusted cooling and heating solution. Whether you need a
Haier AC 1 ton for a small bedroom or a
Haier 2 ton AC for a large lounge,
Lahore Electronics stocks every Haier inverter AC model at the best
Haier AC price in Pakistan. Our range includes the famous
Haier Triple Inverter AC, Pearl Pro Series, Marvel Series, Thunder T3, and the energy-saving
Haier inverter aircon lineup — all with official
Haier company warranty.
Looking for Haier AC 1.5 ton price or Haier 1.5 ton inverter AC price?
Check our live prices below. We also carry
Candy by Haier AC,
Haier commercial AC (floor standing,
cassette, duct), and window/portable options. Get the best
Haier AC 1 ton inverter price and Haier AC 2 ton price with free installation nationwide.
1-Ton AC
1.5-Ton AC

Haier Refrigerators & Freezers
Shop the complete range of Haier refrigerators and
Haier deep freezers at Lahore Electronics.
Whether you’re looking for a compact Haier mini fridge, a classic Haier room fridge,
a powerful Haier inverter fridge, or a spacious Haier side by side refrigerator,
we have the best Haier fridge price in Pakistan with official warranty.
Popular models include Haier 186, Haier 276, Haier 368 inverter,
Haier 398, Haier 438, and the flagship Haier 622 side by side.
Our Haier company refrigerator lineup covers everything from a 2.3CF
Haier small fridge to a 20CF Haier inverter refrigerator — all
sourced directly from the Haier official website.
For freezing needs, check our Haier deep freezer range including the
Haier 385 deep freezer and Haier 405 deep freezer.
All Haier fridge freezer combos and standalone Haier freezer models are available
at the lowest Haier deep freezer price in Pakistan.
Small (Mini) Fridges
Medium Fridges (10–14 CF)
Large Fridges (16–22 CF)
Haier Deep Freezers
- Haier HDF-175INV Inverter 175L (6.2 CF) – Single Door
- Haier HDF-245I Inverter 245L (9 CF)
- Haier HDF-285I Inverter 285L (10 CF)
- Haier HDF-385I Double Door 385L (15 CF) – Haier 385 Deep Freezer
- Haier HDF-385IG Double Door 385L (15 CF) – Grey
- Haier HDF-405I Single Door 405L (15 CF) – Haier 405 Deep Freezer
- See all Deep Freezers →

Haier Washing Machines
Lahore Electronics carries the widest selection of
Haier washing machines in Pakistan.
From the fully automatic Haier front load washing machine to top-loading
Haier laundry machines and budget-friendly semi-automatic models — we stock them all at the
best price with free installation on nationwide delivery.
Popular models include Haier 120 826, Haier 85 826, and the advanced
Haier dryer machine combos. Whether you need a Haier wash machine for daily
household use or a heavy-duty Haier clothes dryer washer-dryer unit, our authorized
Haier company stock
is always up to date. All models come with official brand warranty and expert after-sales support from
Lahore Electronics — Pakistan’s most trusted Haier machine retailer.
Top Load Washing Machines
Front Load Washing Machines
Semi Automatic Washing Machines
Why Choose Haier Washing Machine?
- ✅ DC Inverter motor saves electricity up to 50%
- ✅ Haier dryer combo models available
- ✅ Free installation with every purchase
- ✅ Available on easy installment plans
- ✅ Haier laundry machine models from 7.5 KG to 12 KG
- ✅ Official Haier Pakistan warranty

Haier Kitchen Appliances
Complete your kitchen with Haier kitchen appliances
from Lahore Electronics. Our range covers
Haier hobs,
Haier kitchen hoods,
Haier ovens,
Haier cooking range, and a full lineup of
Haier small appliances including kettles, blenders, air fryers, and dough makers.
We also stock Haier dishwashers for
modern Pakistani kitchens. All Haier home appliances are 100% genuine —
from the trusted Haier electronics brand.
Need a Haier stove or Haier cooler? Browse all options below.
Haier Hobs
Haier Kitchen Hoods
Haier Ovens & Dishwashers
- Haier Microwave Ovens – All Models
- Haier Built-in Ovens
- Haier Dishwasher – All Models
- Haier Cooking Appliances – Official ↗
Small Appliances
Haier AC Price in Pakistan – Best Deals at Lahore Electronics
Finding the right Haier AC price in Pakistan can be tricky, but Lahore Electronics makes it simple.
We carry every Haier air conditioner at official
Haier company pricing — no hidden charges, no compromise on quality.
Our most popular models are the Haier AC 1 ton inverter
starting from ₨110,000 and the Haier 1.5 ton inverter AC
starting from ₨125,000.
The Haier AC 1.5 ton price for the 2025–2026 HSU-19HFC and HSU-19HFAB models has been updated —
visit our AC page for current pricing.
We also offer the Haier inverter AC 1 ton price on all 13HFC, 13HFP, and 13HFAB variants.
For bigger spaces, the Haier 2 ton AC price
starts from ₨194,000. Get free installation and brand warranty on every
Haier inverter aircon you buy from us.
Haier Fridge Price in Pakistan – Inverter, No-Frost & Side by Side
The Haier fridge price in Pakistan at Lahore Electronics covers every budget —
from the affordable Haier mini fridge at ₨34,000
to the premium Haier side by side fridge at ₨250,000.
Our Haier inverter fridge models (also called Haier refrigerator inverter) are
the bestsellers — they consume 30–50% less electricity compared to regular compressor models.
Looking for Haier company refrigerator prices? Popular models:
Haier 186 at ₨56,000, Haier 276 from ₨80,000,
Haier 438 / Haier 398 from ₨125,000, and the
Haier 622 side by side at ₨250,000.
All are genuine Haier company
products. Rephrijretar (refrigerator) buyers — we have every size available.
The Haier small refrigerator and Haier room fridge options are ideal
for bedrooms and small apartments.
Haier Deep Freezer Price – HDF Series at Best Rates
Lahore Electronics offers the complete Haier deep freezer
range at competitive prices. Our Haier freezer lineup starts from the compact
Haier HDF-175INV (6.2 CF) at ₨57,000
and goes up to the large-capacity
Haier HDF-405I (15 CF) at ₨103,500.
The most popular is the Haier 385 deep freezer (HDF-385I) — a double-door inverter model at ₨98,000.
For commercial use, the Haier 405 deep freezer (single door, 15 CF) is highly recommended.
All Haier deep freezer price models include the inverter compressor which saves electricity and extends
food freshness. We also stock the Haier small freezer and Haier fridge freezer
combination models. Get the best Haier freezer price in Pakistan at Lahore Electronics with
Haier chiller options for commercial buyers.
Haier Washing Machine – Front Load, Top Load & Semi Auto
Looking for a Haier wash machine or Haier laundry machine?
Lahore Electronics carries Pakistan’s widest range of
Haier washing machines —
from budget semi-automatic models to premium front-loaders.
The Haier 826 series (Haier 120 826, Haier 85 826)
is among the most searched Haier machine models in Pakistan.
The Haier HWM-90-826 at ₨59,000 and Haier HWM 100-316 at ₨68,000
are top-sellers. For front-load, the
Haier HW90-BP14959 9KG at ₨165,000
is a customer favourite. We also offer Haier dryer machine / washer-dryer combos
and separate Haier clothes dryer units.
Free installation is included with every Haier washing machine purchase.
Visit Haier Pakistan
for full product specs.
Haier Home Appliances – Complete Range at Lahore Electronics
As Pakistan’s authorized Haier outlet and official
Haier electronics dealer,
Lahore Electronics is your one-stop shop for all Haier home appliances and
Haier products. Beyond AC and refrigerators, we carry
Haier LED TVs (32″ to 65″, Google Smart TVs),
Haier dishwashers,
Haier kitchen appliances including hobs, chimney hoods, and ovens,
Haier water dispensers,
and Haier air purifiers.
We also stock Haier air cooler and Haier cooler models for the summer season.
For Haier portable AC, Haier portable air conditioner, and
Haier window AC queries, contact our team directly.
Check Lahore Electronics Haier Store for the
latest Haier sale offers and Haier appliances deals.
For brand information, visit the Haier official website.
Buy Haier from Lahore Electronics – Daraz Alternative
Many customers search Daraz Haier AC or Daraz Haier fridge —
but Lahore Electronics offers even better deals as a direct authorized
Haier Store in Pakistan.
You get the same official Haier company prices, but with personalized service,
expert guidance, and hassle-free after-sales support that big marketplaces can’t match.
We offer cash on delivery, bank transfer, and card payment across Pakistan.
Whether you’re in Lahore, Karachi, Islamabad, Rawalpindi, Faisalabad, or any other city,
we deliver all Haier electronics to your doorstep.
Looking for Haier inverter products specifically?
We stock the full Haier inverter AC, Haier inverter fridge,
and Haier inverter aircon lineup — all with the latest
Haier 1 ton inverter, Haier 1.5 ton, and
Haier triple inverter AC models.
For Candy by Haier products, explore our dedicated
Candy Haier AC section.
Why Buy Haier from Lahore Electronics?
Authorized Haier Dealer
Official Haier outlet and authorized dealer. Every product is 100% genuine with
Haier company warranty.
Best Haier Prices
Best Haier fridge price, Haier AC price, and Haier freezer price
in Pakistan. We price-match Daraz Haier deals.
Free Nationwide Delivery
All Haier appliances delivered across Pakistan with free installation on ACs and washing machines.
Full Brand Warranty
Every Haier product carries the official manufacturer warranty serviced by
Haier Pakistan service centers.
Flexible Payment
Cash on delivery, bank transfer, Visa, MasterCard, ATM. Haier sale discounts all year round.
Always Available
Call +92-347-8467860 anytime. We help you choose the right
Haier machine and check the latest Haier AC price.
Shop Genuine Haier Appliances Today
Pakistan’s most trusted Haier store — best prices, full warranty, nationwide delivery








