/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; font-size: 14px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

:root {
  --primary: #1155CC;
  --accent: #FF8C00;
  --accent-dark: #E07000;
  --light: #f4f7fa;
  --border: #e0e0e0;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 10px;
  --transition: all 0.3s ease;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2rem; font-weight: 700; color: var(--primary); }
.section-title h2 span { color: var(--accent); }
.section-title .underline { width: 60px; height: 3px; background: var(--accent); margin: 10px auto 0; border-radius: 2px; }
.section-title p { color: var(--text-light); margin-top: 10px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary); color: #fff; font-size: 13.5px; font-weight: 600; padding: 7px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 5px; }
.top-bar a { color: #fff; font-weight: 600; transition: var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-left a, .top-bar-right a, .top-bar-right span { display: flex; align-items: center; gap: 5px; color: #fff; font-weight: 600; }

/* ===== HEADER ===== */
.main-header { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; gap: 15px; padding: 8px 0; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 90px; width: auto; max-width: 260px; object-fit: contain; display: block; }
.logo-icon { background: var(--primary); color: var(--accent); font-size: 26px; font-weight: 900; padding: 10px 15px; border-radius: 6px; letter-spacing: 1px; }
.logo-main { display: block; font-size: 24px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.logo-sub { display: block; font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 1.5px; }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: flex; align-items: center; gap: 4px; padding: 9px 13px; font-size: 14.5px; font-weight: 700; color: var(--primary); border-radius: 5px; transition: var(--transition); white-space: nowrap; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--accent); background: #FFF3E0; }
.main-nav > ul > li > a.active { border-bottom: 2px solid var(--accent); }
.main-nav .fa-chevron-down { font-size: 10px; }

.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; box-shadow: var(--shadow-hover); border-radius: 8px; border-top: 3px solid var(--accent); display: none; z-index: 999; padding: 8px 0; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; color: var(--text); font-size: 13px; transition: var(--transition); }
.dropdown li a:hover { background: #FFF3E0; color: var(--accent); padding-left: 24px; }
.dropdown li a i { color: var(--accent); width: 16px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.search-box { display: flex; border: 2px solid var(--border); border-radius: 25px; overflow: hidden; }
.search-box input { border: none; outline: none; padding: 8px 15px; font-size: 13px; width: 200px; font-family: inherit; }
.search-box button { background: var(--accent); color: #fff; border: none; padding: 8px 14px; cursor: pointer; transition: var(--transition); }
.search-box button:hover { background: var(--accent-dark); }

.wa-header-btn { width: 40px; height: 40px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: var(--transition); }
.wa-header-btn:hover { background: #1da851; transform: scale(1.1); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { display: block; width: 25px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%); min-height: 520px; display: flex; align-items: center; }
.slider-wrapper { display: flex; transition: transform 0.6s ease; width: 100%; }
.slide { min-width: 100%; padding: 60px 0; display: flex; align-items: center; }
.slide-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.slide-text { color: #fff; }
.slide-text h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 5px; }
.slide-text h1 span { color: var(--accent); display: block; }
.slide-text p { font-size: 1rem; color: #b0c4de; margin: 15px 0 25px; max-width: 450px; }
.slide-badges { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.slide-badge { display: flex; align-items: center; gap: 8px; }
.slide-badge i { color: var(--accent); font-size: 22px; }
.slide-badge-text .b-title { font-weight: 700; font-size: 13px; color: #fff; }
.slide-badge-text .b-sub { font-size: 11px; color: #8ab4d8; }
.slide-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: #fff; padding: 13px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); border: 2px solid var(--primary); }
.btn-primary:hover { background: #0d3b6e; }
.btn-outline { background: transparent; color: #fff; padding: 13px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.slide-image { text-align: center; }
.slide-image img { max-height: 380px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); z-index: 10; }
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== CATEGORIES ===== */
.categories-section { padding: 70px 0; background: #fff; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
@media (max-width: 1100px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
.category-card { background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 25px 15px; text-align: center; transition: var(--transition); cursor: pointer; }
.category-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-card .cat-image { width: 100%; height: 120px; object-fit: contain; margin-bottom: 15px; border-radius: 8px; }
.category-card .cat-icon { font-size: 36px; color: var(--accent); margin-bottom: 12px; }
.category-card h3 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.category-card p { font-size: 11px; color: var(--text-light); margin-bottom: 15px; line-height: 1.4; }
.btn-explore { display: inline-block; padding: 7px 20px; border: 2px solid var(--primary); color: var(--primary); border-radius: 5px; font-size: 12px; font-weight: 600; transition: var(--transition); }
.btn-explore:hover, .category-card:hover .btn-explore { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== WHY CHOOSE ===== */
.why-section { background: linear-gradient(135deg, #0a2e5a 0%, #1155CC 100%); padding: 70px 0; }
.why-section .section-title h2 { color: #fff; }
.why-section .section-title h2 span { color: var(--accent); }
.why-section .underline { background: var(--accent); }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.why-card { text-align: center; color: #fff; padding: 24px 14px; background: rgba(255,255,255,0.07); border-radius: 14px; border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-card .why-icon { width: 60px; height: 60px; background: rgba(255,140,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 2px solid rgba(255,140,0,0.3); }
.why-card i { font-size: 26px; color: var(--accent); }
.why-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 7px; line-height: 1.3; }
.why-card p { font-size: 11px; color: #a8c4e0; line-height: 1.5; }

/* ===== FEATURED PRODUCTS ===== */
.products-section { padding: 70px 0; background: var(--light); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

.product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-card .prod-img-wrap { position: relative; overflow: hidden; height: 200px; background: #f8f9fa; display: flex; align-items: center; justify-content: center; }
.product-card .prod-img-wrap img { max-height: 180px; max-width: 90%; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .prod-img-wrap img { transform: scale(1.05); }
.product-card .prod-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; }
.product-card .prod-body { padding: 15px; }
.product-card .prod-cat { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.product-card h3 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.product-card .prod-brand { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.product-card .prod-price { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.product-card .prod-price .price-label { font-size: 11px; color: var(--text-light); font-weight: 400; }
.product-card .prod-warranty { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.product-card .prod-warranty i { color: var(--accent); }
.prod-actions { display: flex; gap: 8px; }
.btn-wa-enquiry { flex: 1; background: #25d366; color: #fff; border: none; padding: 10px; border-radius: 7px; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-wa-enquiry:hover { background: #1da851; transform: scale(1.02); color: #fff; }
.btn-wa-enquiry i { font-size: 16px; }
.btn-view { background: var(--primary); color: #fff; border: none; padding: 10px 14px; border-radius: 7px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.btn-view:hover { background: #0d3b6e; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 70px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } }
.about-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-hover); }
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.about-text h2 span { color: var(--accent); }
.about-text p { color: var(--text-light); margin: 15px 0 25px; line-height: 1.8; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.stat-item { text-align: center; background: #f8f9fc; border-radius: 12px; padding: 18px 10px; border: 1px solid #eef0f5; }
.stat-item .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat-item .stat-label { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.stat-item i { color: var(--accent); font-size: 22px; margin-bottom: 6px; display: block; }

/* ===== HELP BANNER ===== */
.help-banner { background: linear-gradient(135deg, #0D47A1, #1976D2); padding: 30px 0; }
.help-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.help-left { display: flex; align-items: center; gap: 20px; color: #fff; }
.help-left i { font-size: 50px; color: var(--accent); }
.help-left h3 { font-size: 1.2rem; font-weight: 700; }
.help-left p { color: #b0c4de; font-size: 13px; }
.btn-wa-expert { background: #25d366; color: #fff; padding: 14px 28px; border-radius: 7px; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: var(--transition); white-space: nowrap; }
.btn-wa-expert i { font-size: 20px; }
.btn-wa-expert:hover { background: #1da851; transform: scale(1.03); color: #fff; }

/* ===== FOOTER ===== */
.main-footer { background: #0d1b2a; color: #9aa5b4; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--accent); }
.footer-col h4 .footer-toggle { display: none; font-size: 12px; color: #6b7280; transition: transform 0.3s; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #9aa5b4; font-size: 13px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-about .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-about .logo-main { color: #fff; font-size: 22px; }
.footer-about .logo-sub { color: var(--accent); font-size: 12px; }
.footer-about p { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); color: #9aa5b4; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.08); }
.social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; }
.contact-list li i { color: var(--accent); margin-top: 2px; min-width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; margin-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: #6b7280; }

/* Footer Mobile */
@media (max-width: 768px) {
  .main-footer { padding: 30px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-about { padding: 20px 0 25px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 0; }
  .footer-about .social-links { justify-content: center; }
  .footer-about .footer-logo { justify-content: center; }
  .footer-about p { text-align: center; }
  .footer-col:not(.footer-about) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-col:not(.footer-about) h4 { padding: 16px 0; margin-bottom: 0; cursor: pointer; }
  .footer-col:not(.footer-about) h4::after { display: none; }
  .footer-col h4 .footer-toggle { display: inline-block; }
  .footer-col:not(.footer-about) ul { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0; }
  .footer-col:not(.footer-about).f-open ul { max-height: 300px; padding-bottom: 16px; }
  .footer-col:not(.footer-about).f-open h4 .footer-toggle { transform: rotate(180deg); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 16px 0; margin-top: 0; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; z-index: 999; background: #25d366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; color: #fff; }
.wa-tooltip { display: none; position: absolute; right: 70px; background: #333; color: #fff; padding: 6px 12px; border-radius: 5px; font-size: 12px; white-space: nowrap; }
.whatsapp-float:hover .wa-tooltip { display: block; }

/* ===== SHOP PAGE ===== */
.page-hero { background: linear-gradient(135deg, var(--primary), #1976D2); color: #fff; padding: 50px 0; text-align: center; }
.page-hero h1 { font-size: 2.2rem; font-weight: 800; }
.page-hero p { color: #b0c4de; margin-top: 8px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 15px; font-size: 15px; font-weight: 600; color: #b0c4de; }
.breadcrumb a { color: var(--accent); font-weight: 700; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding: 40px 0; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
.sidebar { background: #fff; border-radius: 12px; padding: 25px; box-shadow: var(--shadow); height: fit-content; position: sticky; top: 100px; }
.sidebar h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.sidebar-section { margin-bottom: 25px; }
.sidebar-section h4 { font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.filter-list li { margin-bottom: 4px; }
.filter-list li label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--text); }
.filter-list li input[type=checkbox] { accent-color: var(--accent); }
.filter-list li a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 8px; font-size: 13px; color: #555; font-weight: 500; transition: all 0.2s; text-decoration: none; border: 1.5px solid transparent; }
.filter-list li a:hover { background: #fff7ed; color: var(--accent); border-color: #ffe0b2; padding-left: 16px; }
.filter-list li a.active-cat { background: var(--accent); color: #fff !important; font-weight: 700 !important; border-color: var(--accent); }
.shop-main { }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; background: #fff; padding: 15px 20px; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 25px; flex-wrap: wrap; gap: 10px; }
.shop-toolbar span { font-size: 13px; color: var(--text-light); }
.shop-toolbar select { border: 2px solid var(--border); border-radius: 6px; padding: 7px 12px; font-size: 13px; font-family: inherit; outline: none; cursor: pointer; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 50px 0; }
.prod-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 768px) { .prod-detail-grid { grid-template-columns: 1fr; } }
.prod-gallery .main-image { background: #f8f9fa; border-radius: 12px; padding: 30px; text-align: center; margin-bottom: 15px; min-height: 350px; display: flex; align-items: center; justify-content: center; }
.prod-gallery .main-image img { max-height: 300px; object-fit: contain; }
.prod-gallery .thumbnails { display: flex; gap: 10px; flex-wrap: wrap; }
.prod-gallery .thumb { width: 70px; height: 70px; border: 2px solid var(--border); border-radius: 8px; padding: 5px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.prod-gallery .thumb:hover, .prod-gallery .thumb.active { border-color: var(--accent); }
.prod-gallery .thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-info h1 { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.prod-info .prod-meta { display: flex; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
.prod-info .prod-meta span { font-size: 13px; color: var(--text-light); }
.prod-info .prod-meta span b { color: var(--text); }
.prod-info .big-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.prod-info .big-price small { font-size: 14px; color: var(--text-light); font-weight: 400; }
.prod-info .warranty-badge { display: inline-flex; align-items: center; gap: 6px; background: #d4edda; color: #155724; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.prod-info .description { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-size: 14px; }
.prod-info .wa-enquiry-big { background: #25d366; color: #fff; padding: 16px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); }
.prod-info .wa-enquiry-big:hover { background: #1da851; transform: translateY(-2px); }
.prod-info .wa-enquiry-big i { font-size: 22px; }
.features-list { list-style: none; margin: 15px 0; }
.features-list li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 13px; border-bottom: 1px dashed var(--border); }
.features-list li i { color: var(--accent); margin-top: 2px; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:nth-child(even) { background: #f8f9fa; }
.specs-table td { padding: 10px 15px; font-size: 13px; }
.specs-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: var(--shadow); display: flex; gap: 15px; align-items: flex-start; }
.contact-info-card .ci-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), #1a4a8a); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.contact-info-card p, .contact-info-card a { font-size: 13px; color: var(--text-light); }
.contact-form-box { background: #fff; border-radius: 12px; padding: 35px; box-shadow: var(--shadow); }
.contact-form-box h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 2px solid var(--border); border-radius: 8px; padding: 11px 15px; font-size: 14px; font-family: inherit; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit { background: var(--accent); color: #fff; border: none; padding: 13px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 60px 0; }
.team-section { padding: 60px 0; background: var(--light); }
.values-section { padding: 60px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: #fff; border-radius: 12px; padding: 35px 25px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.value-card i { font-size: 45px; color: var(--accent); margin-bottom: 18px; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 13px; line-height: 1.7; }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert i { font-size: 18px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 5px; justify-content: center; padding: 30px 0; flex-wrap: wrap; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text); transition: var(--transition); }
.pagination a:hover, .pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 60px 20px; }
.no-results i { font-size: 60px; color: var(--border); margin-bottom: 20px; }
.no-results h3 { font-size: 1.2rem; color: var(--text-light); }

/* ===== BACK TO TOP ===== */
#backToTop { position: fixed; bottom: 90px; right: 25px; background: var(--primary); color: #fff; width: 42px; height: 42px; border-radius: 8px; display: none; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 998; transition: var(--transition); border: none; }
#backToTop:hover { background: var(--accent); }
#backToTop.show { display: flex; }

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .slide-text h1 { font-size: 2.2rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .shop-layout { grid-template-columns: 220px 1fr; gap: 20px; }
}

/* ===== TABLET (max 900px) ===== */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar-toggle { display: flex !important; }
  .sidebar { display: none; }
  .sidebar.sidebar-open { display: block; }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar-left { display: none; }
  .top-bar-right { font-size: 11px; gap: 10px; }

  /* Header */
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .main-nav { display: none; width: 100%; order: 10; background: #fff; border-top: 1px solid var(--border); padding: 10px 0; }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 12px 5px; border-bottom: 1px solid #f0f0f0; font-size: 14px; border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border: none; background: #f8f9fa; border-radius: 6px; margin: 4px 0; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .mobile-menu-btn { display: flex; }
  .search-box input { width: 130px; }
  .search-box { flex: 1; max-width: 220px; }

  /* Hero */
  .slide { padding: 40px 0; }
  .slide-content { grid-template-columns: 1fr; text-align: center; }
  .slide-image { display: none; }
  .slide-text h1 { font-size: 1.9rem; }
  .slide-text p { font-size: 13px; max-width: 100%; }
  .slide-btns { justify-content: center; }
  .slide-badges { justify-content: center; gap: 15px; }
  .hero-slider { min-height: auto; }

  /* Sections */
  .categories-section, .products-section, .why-section, .about-section { padding: 45px 0; }
  .section-title h2 { font-size: 1.6rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

  /* About section */
  .about-grid { grid-template-columns: 1fr; gap: 25px; }
  .about-text h2 { font-size: 1.6rem; }
  .stats-row { justify-content: center; gap: 20px; }

  /* Help banner */
  .help-inner { flex-direction: column; text-align: center; }
  .help-left { flex-direction: column; text-align: center; gap: 10px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Page hero */
  .page-hero { padding: 35px 0; }
  .page-hero h1 { font-size: 1.7rem; }

  /* Shop */
  .shop-layout { padding: 20px 0; }
  .shop-toolbar { padding: 12px 15px; }

  /* Product detail */
  .prod-detail-grid { grid-template-columns: 1fr; gap: 25px; }
  .prod-info h1 { font-size: 1.4rem; }
  .prod-info .big-price { font-size: 1.6rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
}

/* ===== MOBILE SMALL (max 540px) ===== */
@media (max-width: 540px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .slide-text h1 { font-size: 1.6rem; }
  .search-box input { width: 100px; }
}

/* ===== MOBILE XS (max 420px) ===== */
@media (max-width: 420px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-text h1 { font-size: 1.4rem; }
  .btn-primary, .btn-outline { padding: 11px 18px; font-size: 13px; }
  .page-hero h1 { font-size: 1.4rem; }
  .header-inner { gap: 8px; }
  .search-box { max-width: 160px; }
  .product-card .prod-price { font-size: 14px; }
  .product-card h3 { font-size: 12px; }
  .product-card .prod-body { padding: 10px; }
  .product-card .prod-img-wrap { height: 150px; }
  .btn-wa-enquiry { font-size: 11px; padding: 8px 6px; }
  .btn-wa-enquiry i { font-size: 13px; }
}
