*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  transform: scale(1.35);
}

.menu-btn {
  position: absolute;
  left: 24px;
  top: 34px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -500px;
  width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 200;
  transition: left 0.3s ease;
}

.side-menu.open {
  left: 0;
}

.close-btn {
  position: absolute;
  right: 24px;
  top: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 80px 24px 24px;
}

.side-menu li {
  margin-bottom: 18px;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 12px;
  border-radius: 10px;
}

.side-menu a:hover {
  background: #8a4af3;
}

.wholesale-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(138, 74, 243, 0.3), transparent 35%),
    linear-gradient(135deg, #050505, #111);
  padding: 145px 24px 85px;
}

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto 28px;
  color: #aaa;
  font-size: 14px;
}

.breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
  color: #777;
}

.wholesale-hero {
  max-width: 1100px;
  margin: 0 auto 42px;
  text-align: center;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #d6d6d6;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wholesale-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 900;
}

.wholesale-hero p {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-points div,
.requirements-box,
.form-section,
.seo-content {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.hero-points div {
  padding: 20px;
}

.hero-points strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.hero-points span {
  color: #cfcfcf;
  font-size: 14px;
}

.requirements-box,
.quote-form,
.seo-content {
  max-width: 1320px;
  margin: 28px auto 0;
}

.requirements-box,
.form-section,
.seo-content {
  padding: 28px;
}

.requirements-box h2,
.form-section h2,
.seo-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.requirements-box p,
.section-heading p,
.product-select-card p,
.seo-content p,
.form-note {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 16px;
}

.form-section {
  margin-top: 28px;
}

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

label {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  outline: none;
}

select option {
  color: #000;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #8a4af3;
  box-shadow: 0 0 0 3px rgba(138,74,243,0.22);
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.product-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-select-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-select-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138,74,243,0.65);
}

.product-select-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 65%);
}

.product-select-card span {
  display: block;
  color: #bfbfbf;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-select-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.quantity-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  margin-top: 16px;
}

.quantity-row select,
.quantity-row input {
  margin-top: 0;
}

.quantity-summary {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(138,74,243,0.14);
  border: 1px solid rgba(138,74,243,0.45);
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quantity-summary strong {
  display: block;
  font-size: 24px;
}

.quantity-summary p {
  grid-column: 1 / -1;
  color: #ffb4b4;
}

.quantity-summary p.success {
  color: #87f7a1;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #cfcfcf;
  margin-top: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.submit-btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  background: #8a4af3;
  color: #fff;
}

.form-note {
  margin-top: 15px;
  text-align: center;
}

.seo-content h2 {
  margin-top: 20px;
}

.seo-content h2:first-child {
  margin-top: 0;
}

footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 22px 16px;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .hero-points,
  .product-select-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 105px;
  }

  .logo img {
    width: 155px;
    height: 90px;
  }

  .menu-btn {
    top: 32px;
    left: 18px;
    font-size: 34px;
  }

  .side-menu {
    width: 100%;
  }

  .wholesale-page {
    padding: 130px 16px 70px;
  }

  .wholesale-hero h1 {
    font-size: 38px;
  }

  .wholesale-hero p {
    font-size: 16px;
  }

  .requirements-box,
  .form-section,
  .seo-content {
    padding: 22px;
  }

  .product-select-card img {
    height: 180px;
  }

  .quantity-row {
    grid-template-columns: 1fr;
  }

  .quantity-summary {
    grid-template-columns: 1fr;
  }

  .quantity-summary p {
    grid-column: auto;
  }
}

.header-warning {
  position: absolute;
  right: 24px;
  top: 39px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(220,38,38,0.22),
      rgba(255,60,60,0.12)
    );

  border: 1px solid rgba(255,70,70,0.45);

  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.4px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 25px rgba(220,38,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: 0.25s ease;

  z-index: 1001;
}

.header-warning:hover {
  background:
    linear-gradient(
      135deg,
      #dc2626,
      #ff3b3b
    );

  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(220,38,38,0.35);
}

@media (max-width: 620px) {

  .header-warning {

    position: absolute;

    left: 300px;
    top: 40px;

    padding: 7px 12px;

    font-size: 7.5px;
    font-weight: 800;

    border-radius: 999px;

    white-space: nowrap;

  }

}