/*
Theme Name: Prime Mops Export
Theme URI: https://prime-mops.com
Author: Prime Mops
Author URI: https://prime-mops.com
Description: B2B export website theme for Prime Mops — manufacturer of Kentucky, dust, flat, socket and 360° mops in Gujranwala, Pakistan.
Version: 1.4.0
Text Domain: prime-mops
*/

:root {
  --navy: #0b1f33;
  --navy-2: #123049;
  --teal: #0e7c7b;
  --teal-2: #129490;
  --gold: #c9a227;
  --ink: #1a2330;
  --muted: #5b6b7c;
  --line: #d7e0e8;
  --paper: #f4f7f8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 31, 51, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #d7e6ef;
  font-size: 13px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar .left, .topbar .right { display: flex; gap: 18px; flex-wrap: wrap; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--navy);
}
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--teal), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
}
.logo span { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .4px; text-transform: none; }
nav ul { display: flex; gap: 22px; list-style: none; font-weight: 600; font-size: 15px; }
nav a:hover { color: var(--teal); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--teal-2); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; }

/* Hero */
.hero {
  background:
    linear-gradient(110deg, rgba(11,31,51,.88), rgba(14,124,123,.55)),
    radial-gradient(circle at 80% 20%, #1c4a5e 0, transparent 45%);
  color: #fff;
  padding: 78px 0 72px;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.12; margin-bottom: 16px; }
.hero p.lead { font-size: 18px; color: #e4eef3; max-width: 560px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 22px;
}
.hero-card h3 { margin-bottom: 12px; }
.hero-card ul { list-style: none; }
.hero-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }
.hero-card li:last-child { border-bottom: 0; }

/* Sections */
section { padding: 72px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.2; margin-bottom: 10px; color: var(--navy); }
.muted { color: var(--muted); }
.paper { background: var(--paper); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -38px; position: relative; z-index: 2; }
.stat {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.stat b { display: block; font-size: 26px; color: var(--teal); }
.stat span { color: var(--muted); font-size: 14px; }

/* Category / product grids */
.grid-4, .grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(11,31,51,.04);
  display: flex;
  flex-direction: column;
}
.card .media {
  height: 220px;
  background: #eef3f6;
  display: grid;
  place-items: center;
  padding: 16px;
}
.card .media img { max-height: 190px; object-fit: contain; }
.card .body { padding: 16px 16px 18px; }
.card h3 { font-size: 17px; margin-bottom: 6px; color: var(--navy); }
.card p { font-size: 14px; color: var(--muted); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.checklist { list-style: none; margin-top: 16px; }
.checklist li { padding: 8px 0 8px 28px; position: relative; }
.checklist li:before {
  content: "✓";
  position: absolute; left: 0; color: var(--teal); font-weight: 800;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-box, form {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}
.contact-box h3 { margin-bottom: 10px; }
.contact-box p { margin: 8px 0; }
form { display: grid; gap: 12px; }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

footer {
  background: var(--navy);
  color: #c9d8e3;
  padding: 40px 0 22px;
}
footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
footer h4 { color: #fff; margin-bottom: 10px; }
footer a { color: #c9d8e3; }
.copy { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 16px; font-size: 13px; text-align: center; }

.hero-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
.wa-float {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff !important;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .3px;
  box-shadow: var(--shadow);
}
.wa-float:hover { background: var(--teal-2); }

@media (max-width: 900px) {
  .hero .wrap, .split, .contact-grid, footer .wrap { grid-template-columns: 1fr; }
  .stats, .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid var(--line); }
  nav.open ul { flex-direction: column; gap: 12px; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .stats, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
