/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #512973;
  --primary-dark: #3d1d58;
  --primary-light: #6b3a94;
  --navy: #213D65;
  --navy-dark: #162a47;
  --bg: #f8f7fa;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-light: #64618c;
  --border: #e8e5f0;
  --border-light: #f0edf5;
  --green: #25d366;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(81,41,115,0.05);
  --shadow: 0 4px 16px rgba(81,41,115,0.08);
  --shadow-lg: 0 12px 40px rgba(81,41,115,0.12);
  --shadow-xl: 0 20px 60px rgba(81,41,115,0.15);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: var(--primary); color: white;
  font-weight: 600; font-size: 0.9rem; border-radius: var(--radius-sm);
  transition: all 0.25s; border: 2px solid transparent;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--primary);
  font-weight: 600; font-size: 0.9rem; border-radius: var(--radius-sm);
  border: 2px solid var(--border); transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(81,41,115,0.04); }
.btn-ghost { font-size: 0.9rem; color: var(--text-light); padding: 12px; text-align: center; transition: color 0.2s; }
.btn-ghost:hover { color: var(--primary); }
.btn-full { width: 100%; }

/* === ANNOUNCEMENT === */
.announce { background: var(--primary); color: white; padding: 10px 0; font-size: 0.82rem; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.announce a { color: white; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* === HEADER === */
.header { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--primary); }
.logo-text { font-size: 1.35rem; font-weight: 400; letter-spacing: -0.02em; color: var(--text); }
.logo-text strong { font-weight: 800; color: var(--primary); }
.logo-img { height: 40px; width: auto; }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 0.88rem; color: var(--text-light); font-weight: 500; transition: color 0.2s; position: relative; }
.nav a:hover { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; position: relative; color: var(--text); }
.icon-btn:hover { background: var(--border-light); color: var(--primary); }
.cart-badge { position: absolute; top: 4px; right: 4px; background: var(--primary); color: white; font-size: 0.6rem; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.btn-wa-header { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--green); color: white; font-size: 0.82rem; font-weight: 600; border-radius: 100px; transition: all 0.2s; }
.btn-wa-header:hover { background: #1fb855; transform: translateY(-1px); }
.hamburger { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* Search */
.search-panel { display: none; border-top: 1px solid var(--border); background: var(--surface); padding: 16px 0; }
.search-panel.open { display: block; }
.search-inner { display: flex; align-items: center; gap: 12px; }
.search-inner input { flex: 1; border: none; outline: none; font-size: 1rem; background: transparent; color: var(--text); }
.search-inner input::placeholder { color: var(--text-light); }
.search-close { font-size: 1.6rem; color: var(--text-light); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }

/* === HERO === */
.hero { padding: 60px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badges { display: flex; gap: 12px; margin-bottom: 24px; }
.badge-cert { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 6px 10px; display: flex; align-items: center; }
.badge-cert img { height: 28px; width: auto; }
.hero h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; color: var(--navy); }
.hero h1 span { color: var(--primary); }
.hero-sub { color: var(--text-light); font-size: 1.1rem; line-height: 1.7; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right */
.hero-right { position: relative; }
.hero-img-main { background: linear-gradient(135deg, var(--primary), var(--navy)); border-radius: 24px; padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero-img-main img { max-height: 350px; width: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.hero-float { position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); z-index: 2; animation: float 3s ease-in-out infinite; }
.hero-float img { width: 48px; height: 48px; object-fit: contain; }
.hero-float span { font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.hero-float-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-float-2 { top: 30px; right: -20px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === STATS === */
.stats { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.stat span { font-size: 0.85rem; color: var(--text-light); }

/* === SECTION STYLES === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 8px; background: rgba(81,41,115,0.08); padding: 4px 14px; border-radius: 100px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }

/* === CATEGORIES === */
.categories-section { padding: 80px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cat-img { height: 200px; background: linear-gradient(135deg, #f3f0f7, #ebe6f2); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 20px; }
.cat-img img { max-height: 160px; width: auto; object-fit: contain; transition: transform 0.4s; }
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-info { padding: 24px; }
.cat-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.cat-info p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.cat-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* === FEATURED === */
.featured { padding: 80px 0; background: var(--surface); }
.featured-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: linear-gradient(135deg, var(--navy), var(--primary-dark)); border-radius: 24px; overflow: hidden; }
.featured-left { display: flex; align-items: center; justify-content: center; padding: 60px; }
.featured-product-img { max-height: 380px; width: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.featured-right { padding: 60px; color: white; display: flex; flex-direction: column; justify-content: center; }
.featured-right .section-label { background: rgba(255,255,255,0.15); color: white; }
.featured-right h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.featured-right > p { color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.7; }
.featured-list { list-style: none; margin-bottom: 28px; }
.featured-list li { padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 10px; }
.featured-list li::before { content: ''; width: 20px; height: 20px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.featured-price { margin-bottom: 24px; }
.featured-price span { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: block; }
.featured-price strong { font-size: 2rem; font-weight: 800; }
.featured-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.featured-btns .btn-primary { background: white; color: var(--primary); }
.featured-btns .btn-primary:hover { background: #f0edf5; }
.featured-btns .btn-secondary { border-color: rgba(255,255,255,0.3); color: white; }
.featured-btns .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* === PRODUCTS === */
.products-section { padding: 80px 0; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.filter-pill { padding: 8px 20px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; background: var(--surface); border: 1px solid var(--border); color: var(--text-light); transition: all 0.2s; }
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: white; border-color: var(--primary); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.product-img { aspect-ratio: 4/3; background: linear-gradient(135deg, #f8f5fc, #f0ebf5); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 16px; }
.product-img img { max-height: 140px; width: auto; object-fit: contain; transition: transform 0.3s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-body { padding: 20px; }
.product-cat { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 4px; }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); line-height: 1.3; }
.product-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.add-btn { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.add-btn:hover { background: var(--primary-dark); transform: scale(1.1); }

/* === CERTIFICATIONS === */
.certs { padding: 48px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.certs-title { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-weight: 600; margin-bottom: 24px; }
.certs-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.certs-row img { height: 50px; width: auto; opacity: 0.7; transition: opacity 0.3s; filter: grayscale(30%); }
.certs-row img:hover { opacity: 1; filter: none; }

/* === ABOUT === */
.about { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-left .section-label { margin-bottom: 12px; }
.about-left h2 { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.2; }
.about-left > p { color: var(--text-light); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
.about-numbers { display: flex; gap: 32px; }
.about-numbers div { text-align: center; }
.about-numbers strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.about-numbers span { font-size: 0.82rem; color: var(--text-light); }
.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.about-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.about-card-num { font-size: 1.8rem; font-weight: 800; color: var(--border); margin-bottom: 12px; }
.about-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.about-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* === CLIENTS === */
.clients { padding: 60px 0; overflow: hidden; }
.clients-label { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); font-weight: 600; margin-bottom: 32px; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 40s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 1.2rem; font-weight: 700; color: var(--border); white-space: nowrap; padding: 0 8px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === CTA === */
.cta-section { padding: 0 0 80px; }
.cta-inner { background: linear-gradient(135deg, var(--primary), var(--navy)); border-radius: 24px; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text h2 { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cta-btns .btn-primary { background: white; color: var(--primary); }
.cta-btns .btn-primary:hover { background: #f0edf5; }
.cta-btns .btn-secondary { border-color: rgba(255,255,255,0.3); color: white; }

/* === NEWSLETTER === */
.newsletter { padding: 0 0 80px; }
.nl-box { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 48px; text-align: center; }
.nl-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.nl-box p { color: var(--text-light); margin-bottom: 24px; }
.nl-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 14px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); outline: none; background: var(--bg); transition: border 0.2s; }
.nl-form input:focus { border-color: var(--primary); }

/* === CONTACT === */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info .section-label { margin-bottom: 8px; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-weight: 500; }
.contact-item a:hover { color: var(--primary); }
.social-wa { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--green); color: white; font-weight: 600; font-size: 0.9rem; border-radius: 100px; transition: all 0.2s; }
.social-wa:hover { background: #1fb855; }
.contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }
.contact-form input, .contact-form textarea { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-xs); outline: none; background: var(--bg); transition: border 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); background: var(--surface); }
.contact-form textarea { resize: vertical; }

/* === FOOTER === */
.footer { background: var(--navy-dark); color: white; padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 400; color: white; }
.footer-logo-text strong { font-weight: 800; }
.footer-brand > p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; max-width: 280px; }
.footer-certs { display: flex; gap: 8px; }
.footer-certs img { height: 30px; width: auto; opacity: 0.5; filter: brightness(2); }
.footer-col h5 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-addr { font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* === CART DRAWER === */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--surface); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-size: 1.1rem; font-weight: 700; }
.cart-head button { font-size: 1.6rem; color: var(--text-light); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--text-light); }
.cart-empty svg { margin: 0 auto 12px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.cart-item-thumb { width: 64px; height: 64px; background: var(--bg); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.cart-item-thumb img { max-width: 50px; max-height: 50px; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; color: var(--navy); }
.cart-item-price { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text); background: var(--surface); }
.qty-btn:hover { background: var(--bg); border-color: var(--primary); }
.cart-item-qty { font-size: 0.9rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove { font-size: 0.78rem; color: #dc2626; margin-left: auto; font-weight: 500; }
.cart-item-remove:hover { text-decoration: underline; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.cart-total-row strong { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.cart-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 16px; }

/* === TOAST === */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--primary); color: white; padding: 14px 28px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; z-index: 300; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); box-shadow: var(--shadow-xl); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* === WHATSAPP FLOAT === */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); z-index: 50; transition: all 0.25s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-grid { gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; z-index: 99; box-shadow: var(--shadow-lg); }
  .hamburger { display: flex; }
  .btn-wa-header { display: none; }
  .hero { padding: 40px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .featured-banner { grid-template-columns: 1fr; }
  .featured-left { padding: 40px; min-height: 250px; }
  .featured-right { padding: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-right { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-badges { flex-wrap: wrap; }
  .hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.6rem; }
  .cta-inner { padding: 32px; }
  .cta-text h2 { font-size: 1.4rem; }
}

/* ============================================
   MULTI-PAGE STYLES
   ============================================ */

/* === BREADCRUMB === */
.breadcrumb-section { padding: 20px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb span:last-child { color: var(--text); font-weight: 600; }

/* === PAGE TITLE === */
.page-title { font-size: 2.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 32px; }

/* === PRODUCT DETAIL PAGE === */
.product-detail-section { padding: 32px 0 16px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-img { background: white; border-radius: var(--radius); padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 380px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.product-detail-img img { max-height: 320px; max-width: 100%; width: auto; object-fit: contain; transition: transform 0.3s; }
.product-detail-img:hover img { transform: scale(1.05); }
.product-detail-info { padding-top: 0; }
.product-detail-cat { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(81,41,115,0.08); padding: 4px 14px; border-radius: 100px; margin-bottom: 10px; }
.product-detail-name { font-size: 1.65rem; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.02em; }
.product-detail-short-desc { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.product-detail-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
.product-detail-sku { color: var(--text-light); font-size: 0.82rem; margin-bottom: 2px; }
.product-detail-vat { color: var(--text-light); font-size: 0.78rem; margin-bottom: 18px; }
.product-detail-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-detail-qty label { font-size: 0.88rem; font-weight: 600; color: var(--text-light); }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-xs); overflow: hidden; }
.qty-control button { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text); background: var(--bg); border: none; cursor: pointer; transition: all 0.2s; }
.qty-control button:hover { background: var(--border-light); color: var(--primary); }
.qty-control span { width: 48px; height: 40px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.btn-wa-product { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--green); color: white; font-weight: 600; font-size: 0.9rem; border-radius: var(--radius-sm); transition: all 0.25s; border: none; cursor: pointer; }
.btn-wa-product:hover { background: #1fb855; transform: translateY(-2px); }

/* Distributor badge (compact) */
.product-detail-distributor { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(81,41,115,0.04); border: 1px solid rgba(81,41,115,0.12); border-radius: var(--radius-xs); font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.dist-badge-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: var(--primary); color: white; border-radius: 50%; font-size: 0.7rem; flex-shrink: 0; }

/* === PRODUCT TABS === */
.product-tabs-section { padding: 0 0 60px; }
.product-tabs-section .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.product-tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.product-tab { padding: 14px 28px; font-size: 0.9rem; font-weight: 600; color: var(--text-light); background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.2s; margin-bottom: -2px; }
.product-tab:hover { color: var(--navy); background: var(--bg); }
.product-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.product-tab-panel { display: none; padding: 28px 0; }
.product-tab-panel.active { display: block; }

/* Tab: Description */
.tab-desc-text { font-size: 0.95rem; color: var(--text); line-height: 1.85; margin-bottom: 24px; max-width: 800px; }
.tab-highlights { }
.tab-highlights h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.tab-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tab-highlight-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg); border-radius: var(--radius-xs); font-size: 0.88rem; color: var(--text); }
.tab-highlight-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(37,211,102,0.12); color: #1a9e4d; border-radius: 50%; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

/* Tab: Specifications */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table tr:last-child { border-bottom: none; }
.spec-label { padding: 12px 16px; font-weight: 600; color: var(--navy); width: 38%; background: var(--bg); vertical-align: top; }
.spec-value { padding: 12px 16px; color: var(--text); }

/* Tab: Features */
.tab-features-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tab-features-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; background: var(--bg); border-radius: var(--radius-xs); font-size: 0.88rem; color: var(--text); line-height: 1.5; }
.feat-check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: rgba(81,41,115,0.08); color: var(--primary); border-radius: 50%; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Tab: Datasheet */
.datasheet-card { display: flex; gap: 20px; padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 20px; }
.datasheet-icon { flex-shrink: 0; width: 56px; height: 56px; background: rgba(81,41,115,0.06); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; }
.datasheet-info { flex: 1; }
.datasheet-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.datasheet-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.datasheet-btn { font-size: 0.88rem; }
.datasheet-email-link { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--text-light); }
.datasheet-email-link:hover { color: var(--primary); }
.datasheet-certs { display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: rgba(81,41,115,0.03); border-radius: var(--radius-xs); font-size: 0.85rem; }
.datasheet-certs span { color: var(--text-light); }
.datasheet-certs strong { color: var(--navy); }

/* === CART PAGE === */
.page-cart-section { padding: 32px 0 80px; }
.cart-page-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-page-items { display: flex; flex-direction: column; gap: 0; }
.cart-page-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 16px; padding: 12px 0; border-bottom: 2px solid var(--border); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.cart-page-item { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-light); align-items: center; }
.cart-page-product { display: flex; gap: 16px; align-items: center; }
.cart-page-thumb { width: 80px; height: 80px; background: var(--bg); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border: 1px solid var(--border-light); }
.cart-page-thumb img { max-width: 60px; max-height: 60px; object-fit: contain; }
.cart-page-product-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cart-page-product-info p { font-size: 0.78rem; color: var(--text-light); }
.cart-page-price { font-weight: 600; color: var(--text); }
.cart-page-subtotal { font-weight: 700; color: var(--primary); }
.cart-page-remove { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #dc2626; border-radius: 50%; transition: all 0.2s; font-size: 1.2rem; cursor: pointer; border: none; background: none; }
.cart-page-remove:hover { background: #fef2f2; }
.cart-page-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: sticky; top: 100px; }
.cart-page-summary h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; }
.summary-row.total { border-top: 2px solid var(--border); margin-top: 12px; padding-top: 16px; }
.summary-row.total strong { font-size: 1.4rem; color: var(--primary); }
.cart-page-summary-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.cart-page-empty { text-align: center; padding: 80px 0; }
.cart-page-empty svg { margin: 0 auto 16px; }
.cart-page-empty h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cart-page-empty p { color: var(--text-light); margin-bottom: 24px; }

/* === CHECKOUT PAGE === */
.checkout-section { padding: 32px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.checkout-forms { display: flex; flex-direction: column; gap: 24px; }
.checkout-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.checkout-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form input, .checkout-form textarea, .checkout-form select { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-xs); outline: none; background: var(--bg); transition: border 0.2s; font-size: 0.95rem; }
.checkout-form input:focus, .checkout-form textarea:focus { border-color: var(--primary); background: var(--surface); }
.checkout-form textarea { resize: vertical; }
.checkout-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.checkout-summary { position: sticky; top: 100px; }
.checkout-summary-card { background: var(--surface); }
.checkout-summary-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); align-items: center; }
.checkout-summary-thumb { width: 56px; height: 56px; background: var(--bg); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.checkout-summary-thumb img { max-width: 42px; max-height: 42px; object-fit: contain; }
.checkout-summary-item-info { flex: 1; }
.checkout-summary-item-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.checkout-summary-item-qty { font-size: 0.78rem; color: var(--text-light); }
.checkout-summary-item-price { font-size: 0.9rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.checkout-summary-totals { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.checkout-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; color: var(--text-light); }
.checkout-summary-row.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 12px; font-size: 1rem; color: var(--text); }
.checkout-summary-row.total strong { font-size: 1.3rem; color: var(--primary); }
.checkout-empty { text-align: center; padding: 40px 0; color: var(--text-light); }

/* Checkout form inputs (also works outside .checkout-form) */
.checkout-form-input { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-xs); outline: none; background: var(--bg); transition: border 0.2s; font-size: 0.95rem; width: 100%; box-sizing: border-box; }
.checkout-form-input:focus { border-color: var(--primary); background: var(--surface); }
.checkout-form select { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-xs); outline: none; background: var(--bg); transition: border 0.2s; font-size: 0.95rem; width: 100%; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.checkout-form select:focus { border-color: var(--primary); }

/* Checkout card subtitle */
.checkout-card-subtitle { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }

/* Form hint text */
.form-hint { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* Form checkbox style */
.form-check { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.form-check label { font-size: 0.9rem; color: var(--text); line-height: 1.5; cursor: pointer; }

/* Customer type toggle */
.customer-type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.type-btn { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); font-size: 0.95rem; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.2s; }
.type-btn:hover { border-color: var(--primary); background: var(--surface); }
.type-btn.active { border-color: var(--primary); background: rgba(81,41,115,0.05); color: var(--primary); }
.type-btn svg { color: inherit; }

/* Company fields */
.company-fields { display: flex; flex-direction: column; gap: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); margin-bottom: 8px; }

/* Delivery options */
.delivery-options { display: flex; flex-direction: column; gap: 12px; }
.delivery-option { display: block; cursor: pointer; border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 20px; transition: all 0.2s; background: var(--bg); }
.delivery-option:hover { border-color: #a78bba; }
.delivery-option.active { border-color: var(--primary); background: rgba(81,41,115,0.03); }
.delivery-option input[type="radio"] { display: none; }
.delivery-option-content { }
.delivery-option-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.delivery-option-radio { width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 50%; flex-shrink: 0; position: relative; transition: all 0.2s; }
.delivery-option.active .delivery-option-radio { border-color: var(--primary); }
.delivery-option.active .delivery-option-radio::after { content: ''; position: absolute; top: 3px; left: 3px; right: 3px; bottom: 3px; background: var(--primary); border-radius: 50%; }
.delivery-option-header strong { font-size: 0.95rem; color: var(--navy); }
.delivery-badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; background: rgba(81,41,115,0.1); color: var(--primary); margin-left: 8px; }
.delivery-badge.free { background: rgba(37,211,102,0.1); color: #1a9e4d; }
.delivery-option p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin: 0; padding-left: 32px; }

/* Checkout progress steps */
.checkout-progress-section { padding: 24px 0; border-bottom: 1px solid var(--border-light); }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 480px; margin: 0 auto; }
.checkout-step { display: flex; align-items: center; gap: 8px; opacity: 0.4; transition: all 0.3s; }
.checkout-step.active { opacity: 1; }
.checkout-step.completed { opacity: 0.7; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--border); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; transition: all 0.3s; }
.checkout-step.active .step-num { background: var(--primary); color: white; }
.checkout-step.completed .step-num { background: #25d366; color: white; }
.checkout-step span { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.step-line { width: 60px; height: 2px; background: var(--border); margin: 0 12px; transition: background 0.3s; }
.step-line.active { background: var(--primary); }

/* Button sizes */
.btn-lg { padding: 16px 32px; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; }
.btn-wa-order { display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px; background: var(--green); color: white; font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-sm); cursor: pointer; border: none; transition: all 0.2s; }
.btn-wa-order:hover { background: #1fb855; transform: translateY(-1px); }

/* Payment section */
.payment-info-box { display: flex; gap: 16px; padding: 20px; background: rgba(81,41,115,0.04); border: 1px solid rgba(81,41,115,0.15); border-radius: var(--radius-sm); margin-bottom: 24px; }
.payment-info-box p { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin: 0; }
.payment-info-box p:first-child { margin-bottom: 4px; }
.payment-info-box strong { color: var(--navy); }
.payment-info-icon { flex-shrink: 0; margin-top: 2px; }

.payment-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.payment-detail-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; }
.payment-detail-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.payment-detail-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; gap: 8px; }
.payment-detail-row span { color: var(--text-light); }
.payment-detail-row strong { color: var(--text); text-align: right; }
.mpesa-steps { flex-direction: column; }
.mpesa-steps ol { padding-left: 18px; margin: 8px 0 0; }
.mpesa-steps ol li { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; }
.mpesa-steps ol li strong { color: var(--primary); }

.payment-amount-box { background: linear-gradient(135deg, var(--primary), var(--navy)); border-radius: var(--radius-sm); padding: 24px 28px; color: white; display: flex; justify-content: space-between; align-items: center; }
.payment-amount-box .pay-label { font-size: 0.9rem; opacity: 0.85; }
.payment-amount-box .pay-total { font-size: 1.8rem; font-weight: 800; }
.payment-amount-box .pay-vat { font-size: 0.8rem; opacity: 0.7; margin-top: 2px; }

/* Upload area */
.upload-hint { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.upload-area { border: 2px dashed var(--border); border-radius: var(--radius-sm); padding: 0; cursor: pointer; transition: all 0.2s; background: var(--bg); overflow: hidden; }
.upload-area:hover { border-color: var(--primary); background: rgba(81,41,115,0.02); }
.upload-area.dragging { border-color: var(--primary); background: rgba(81,41,115,0.05); }
.upload-placeholder { padding: 40px; text-align: center; }
.upload-placeholder svg { margin: 0 auto 12px; display: block; }
.upload-placeholder p { font-size: 0.95rem; color: var(--text); margin: 0 0 4px; }
.upload-placeholder span { font-size: 0.82rem; color: var(--text-light); }
.upload-preview { padding: 20px; display: flex; align-items: center; gap: 16px; }
.upload-preview-file { flex: 1; display: flex; align-items: center; gap: 12px; }
.upload-preview-file .file-icon { width: 48px; height: 48px; background: rgba(81,41,115,0.08); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.upload-preview-file .file-info { }
.upload-preview-file .file-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); word-break: break-all; }
.upload-preview-file .file-size { font-size: 0.78rem; color: var(--text-light); }
.upload-preview-file .file-thumb { width: 48px; height: 48px; border-radius: var(--radius-xs); object-fit: cover; flex-shrink: 0; }
.upload-remove { padding: 8px 16px; font-size: 0.82rem; border: 1px solid #dc2626; color: #dc2626; background: none; border-radius: var(--radius-xs); cursor: pointer; font-weight: 600; transition: all 0.2s; }
.upload-remove:hover { background: #dc2626; color: white; }

/* Review summary (step 2) */
.review-section { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.review-section:last-child { border-bottom: none; margin-bottom: 0; }
.review-section h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.review-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.9rem; }
.review-row span { color: var(--text-light); }
.review-row strong { color: var(--text); }
.review-items-list { display: flex; flex-direction: column; gap: 8px; }
.review-item { display: flex; gap: 12px; align-items: center; padding: 10px; background: var(--bg); border-radius: var(--radius-xs); }
.review-item-thumb { width: 44px; height: 44px; background: white; border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-item-thumb img { max-width: 36px; max-height: 36px; object-fit: contain; }
.review-item-info { flex: 1; font-size: 0.85rem; }
.review-item-info strong { color: var(--navy); display: block; }
.review-item-info span { color: var(--text-light); font-size: 0.8rem; }
.review-item-price { font-weight: 700; color: var(--primary); font-size: 0.9rem; white-space: nowrap; }

/* Checkout trust badges */
.checkout-trust-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding: 16px; background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--radius-sm); }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-light); }
.trust-badge svg { color: var(--primary); flex-shrink: 0; }

/* Order confirmation overlay */
.order-confirm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.order-confirm-modal { background: var(--surface); border-radius: var(--radius); padding: 48px; max-width: 560px; width: 90%; text-align: center; }
.order-confirm-modal svg { margin: 0 auto 16px; }
.order-confirm-modal h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.order-confirm-modal p { color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.order-ref { display: inline-block; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 12px 24px; font-size: 1.1rem; font-weight: 700; color: var(--primary); letter-spacing: 1px; margin-bottom: 20px; }
.order-confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Orders page */
.orders-section { padding: 32px 0 80px; }
.orders-empty { text-align: center; padding: 80px 0; }
.orders-empty svg { margin-bottom: 16px; }
.orders-empty h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.orders-empty p { color: var(--text-light); margin-bottom: 24px; }
.order-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 16px; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); flex-wrap: wrap; gap: 12px; }
.order-card-header h4 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.order-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.order-status.pending { background: #fef3c7; color: #92400e; }
.order-status.confirmed { background: #d1fae5; color: #065f46; }
.order-status.processing { background: #dbeafe; color: #1e40af; }
.order-status.completed { background: #d1fae5; color: #065f46; }
.order-card-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.order-card-meta span { display: flex; align-items: center; gap: 4px; }
.order-card-items { display: flex; flex-direction: column; gap: 8px; }
.order-card-item { display: flex; gap: 12px; align-items: center; padding: 8px 12px; background: var(--bg); border-radius: var(--radius-xs); }
.order-card-item-img { width: 40px; height: 40px; background: white; border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.order-card-item-img img { max-width: 32px; max-height: 32px; object-fit: contain; }
.order-card-item-info { flex: 1; font-size: 0.85rem; }
.order-card-item-info strong { color: var(--navy); }
.order-card-item-info span { color: var(--text-light); font-size: 0.8rem; }
.order-card-total { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-light); font-size: 1rem; }
.order-card-total strong { color: var(--primary); font-size: 1.1rem; }

/* VAT row highlight */
.checkout-summary-row.vat { color: var(--text); font-size: 0.85rem; }
.checkout-summary-row.vat span { color: var(--text-light); }
.checkout-summary-row.delivery { }
.checkout-summary-row.delivery span.free-tag { color: #1a9e4d; font-weight: 600; }

/* === ABOUT PAGE === */
.about-hero { padding: 60px 0 40px; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero-left .section-label { margin-bottom: 12px; }
.about-hero-left h1 { font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.about-hero-sub { color: var(--text-light); font-size: 1.05rem; line-height: 1.75; }
.about-hero-img { background: linear-gradient(135deg, var(--primary), var(--navy)); border-radius: 24px; padding: 48px; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.about-hero-img img { max-height: 280px; width: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

.about-story { padding: 80px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-story-left .section-label { margin-bottom: 12px; }
.about-story-left h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.02em; line-height: 1.2; }
.about-story-left p { color: var(--text-light); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.about-story-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-story-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.about-story-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.about-story-card .about-card-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.about-story-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.about-story-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.about-mission { padding: 80px 0; background: var(--surface); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; transition: all 0.3s; }
.mission-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.mission-icon { width: 64px; height: 64px; background: rgba(81,41,115,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }
.mission-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.mission-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.about-certs { padding: 80px 0; }
.about-certs-desc { text-align: center; color: var(--text-light); max-width: 600px; margin: -24px auto 40px; font-size: 1rem; line-height: 1.7; }
.cert-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; transition: all 0.3s; }
.cert-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.cert-card img { height: 60px; width: auto; margin: 0 auto 16px; }
.cert-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cert-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.about-team { padding: 80px 0; background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.team-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.team-card-icon { width: 52px; height: 52px; background: rgba(81,41,115,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); }
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.team-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* === CONTACT PAGE === */
.contact-hero { padding: 48px 0 24px; }
.contact-hero .section-header h1 { font-size: 2.4rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.contact-hero-sub { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 8px auto 0; line-height: 1.7; }

.contact-page-content { padding: 0 0 80px; }
.contact-page-grid { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.contact-info-side { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-info-card-icon { width: 48px; height: 48px; background: rgba(81,41,115,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--primary); }
.contact-info-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-info-card a { display: block; color: var(--text); font-weight: 500; font-size: 0.92rem; margin-bottom: 4px; transition: color 0.2s; }
.contact-info-card a:hover { color: var(--primary); }
.contact-info-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }
.hours-table { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hours-row span { color: var(--text-light); }
.hours-row strong { color: var(--text); font-weight: 600; }

.btn-wa-contact { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; background: var(--green); color: white; font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-sm); transition: all 0.2s; text-align: center; }
.btn-wa-contact:hover { background: #1fb855; transform: translateY(-2px); }

.contact-form-side { }
.contact-page-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-page-form h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

.contact-map { padding: 0 0 80px; }
.map-placeholder { background: linear-gradient(135deg, #f3f0f7, #e8e5f0); border-radius: var(--radius); min-height: 360px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.map-overlay { text-align: center; padding: 48px; }
.map-overlay h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-top: 12px; margin-bottom: 4px; }
.map-overlay p { color: var(--text-light); margin-bottom: 20px; }

/* Product card link behavior */
.product-card-link { text-decoration: none; color: inherit; display: block; }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1024px) {
  .product-detail-grid { gap: 40px; }
  .cart-page-grid { grid-template-columns: 1fr 320px; }
  .checkout-grid { grid-template-columns: 1fr 360px; }
  .about-hero-grid { gap: 40px; }
  .about-story-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-img { min-height: 280px; padding: 32px; }
  .product-detail-name { font-size: 1.5rem; }
  .product-detail-price { font-size: 1.8rem; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .cart-page-header { display: none; }
  .cart-page-item { grid-template-columns: 1fr; gap: 12px; }
  .cart-page-item-mobile-row { display: flex; justify-content: space-between; align-items: center; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .payment-details-grid { grid-template-columns: 1fr; }
  .customer-type-toggle { grid-template-columns: 1fr; }
  .payment-amount-box { flex-direction: column; text-align: center; gap: 8px; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-right { display: none; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-right { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .cert-cards { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info-side { order: 2; }
  .contact-form-side { order: 1; }
}
@media (max-width: 540px) {
  .page-title { font-size: 1.6rem; }
  .about-story-right { grid-template-columns: 1fr; }
  .cert-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .checkout-actions { flex-direction: column; }
  .checkout-actions .btn-primary,
  .checkout-actions .btn-secondary { width: 100%; }
  .product-detail-actions { flex-direction: column; }
  .product-detail-actions .btn-primary,
  .product-detail-actions .btn-wa-product { width: 100%; text-align: center; justify-content: center; }
}

/* === PAGINATION === */
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.pagination-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--purple-light, #f5f0ff);
}
.pagination-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pagination-active:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

/* === CATEGORY PAGE HERO === */
.category-hero {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf7 100%);
  border-bottom: 1px solid #ece6f4;
}
.category-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.category-hero-text {
  flex: 1;
}
.category-hero-text h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.category-hero-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 16px;
}
.category-count {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.category-hero-img {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-hero-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.category-products-section {
  padding: 40px 0 60px;
}
.filter-pill {
  text-decoration: none;
  color: var(--text);
}
.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 768px) {
  .category-hero-inner { flex-direction: column; text-align: center; gap: 24px; }
  .category-hero-text h1 { font-size: 1.6rem; }
  .category-hero-img { width: 140px; height: 140px; }
}

/* === INFO PAGES (FAQ, Shipping, Warranty, etc.) === */
.page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf7 100%);
  border-bottom: 1px solid #ece6f4;
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
}
.page-content {
  padding: 48px 0 60px;
}
.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}
.page-content p, .page-content li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content li { margin-bottom: 6px; }

/* Info Cards */
.info-card {
  background: #fff;
  border: 1px solid #ece6f4;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.info-card:hover { box-shadow: 0 4px 20px rgba(81, 41, 115, 0.08); }
.info-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.info-card p { margin-bottom: 8px; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

/* FAQ Accordion */
.faq-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ece6f4;
}
.faq-item {
  border: 1px solid #ece6f4;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-question:hover { background: #f8f6fc; }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Job Cards */
.job-card {
  background: #fff;
  border: 1px solid #ece6f4;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}
.job-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.job-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: #f5f0ff;
  padding: 4px 12px;
  border-radius: 20px;
}
.job-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 12px 0 6px;
}
.job-card ul { padding-left: 20px; }
.job-card li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, #f5f0ff 0%, #ede7f6 100%);
  border: 1px solid #d4c4e8;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}
.highlight-box h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.highlight-box p { margin-bottom: 4px; }

/* Table style for info pages */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ece6f4;
}
.info-table th {
  font-weight: 600;
  color: var(--text);
  background: #f8f6fc;
}
.info-table td { color: var(--text-light); }

@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.6rem; }
  .info-grid { grid-template-columns: 1fr; }
  .job-meta { flex-direction: column; gap: 8px; }
}
