/*
Theme Name: B2B Used Clothing Export
Theme URI: https://example.com/
Author: Your Export Team
Author URI: https://example.com/
Description: A WordPress inquiry website theme for wholesale used clothes, shoes, and bags exporters.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: b2b-used-clothing-export
*/

:root {
  --ink: #17212b;
  --muted: #607080;
  --line: #dbe3ea;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #1f7a55;
  --green-dark: #13573e;
  --amber: #d88921;
  --blue: #1e6091;
  --red: #b94a3d;
  --shadow: 0 18px 48px rgba(23, 33, 43, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--blue);
}

.site-wrap {
  overflow-x: hidden;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.top-strip {
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
}

.btn,
button.btn,
input.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  color: var(--white);
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--ink);
  background: #eef5ef;
}

.btn-amber {
  background: var(--amber);
}

.btn-amber:hover,
.btn-amber:focus {
  background: #b96e13;
}

.hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.88), rgba(23, 33, 43, 0.38)),
    url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
  min-height: 690px;
  padding: 72px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-tile {
  padding: 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.proof-tile strong {
  display: block;
  font-size: 24px;
}

.quote-panel {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel h2 {
  font-size: 28px;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.market-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card {
  padding: 24px;
}

.product-card img,
.market-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.meta-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.meta-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
}

.process {
  counter-reset: steps;
}

.process .card {
  position: relative;
  min-height: 210px;
}

.process .card::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--white);
  background: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.image-band {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(31, 122, 85, 0.1), rgba(30, 96, 145, 0.16)),
    url("https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=1400&q=80") center / cover;
  border-radius: var(--radius);
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-cta {
  padding: 62px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding: 46px 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--white);
  background: #20b15a;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  color: var(--white);
  background: #168a45;
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.9), rgba(31, 122, 85, 0.62)),
    url("https://images.unsplash.com/photo-1523381294911-8d3cead13475?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.content-area {
  padding: 72px 0;
}

.wp-content {
  max-width: 820px;
}

.notice-success {
  padding: 18px;
  background: #e9f7ee;
  border: 1px solid #b8e2c5;
  border-radius: var(--radius);
}

.product-landing-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.9), rgba(31, 122, 85, 0.5)),
    url("https://images.unsplash.com/photo-1523381294911-8d3cead13475?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.product-landing-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.64fr);
  gap: 34px;
  align-items: center;
  min-height: 570px;
  padding: 76px 0;
}

.product-landing-hero__panel {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-landing-hero__panel h2 {
  font-size: 24px;
}

.product-detail-grid {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 16px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 12px;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .hero .container,
  .product-landing-hero__inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
  }

  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-strip .container,
  .section-head,
  .hero-proof,
  .form-grid,
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-strip .container,
  .section-head {
    display: grid;
  }

  h1 {
    font-size: 38px;
  }

  .hero .container,
  .section {
    padding: 54px 0;
  }

  .quote-panel {
    padding: 20px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
