/* Local font loading (Supreme) */
@font-face {
  font-family: "Supreme";
  src: url("supreme_complete/Fonts/WEB/fonts/Supreme-Regular.woff2") format("woff2"),
       url("supreme_complete/Fonts/WEB/fonts/Supreme-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Supreme";
  src: url("supreme_complete/Fonts/WEB/fonts/Supreme-Medium.woff2") format("woff2"),
       url("supreme_complete/Fonts/WEB/fonts/Supreme-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Supreme";
  src: url("supreme_complete/Fonts/WEB/fonts/Supreme-Bold.woff2") format("woff2"),
       url("supreme_complete/Fonts/WEB/fonts/Supreme-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Supreme";
  src: url("supreme_complete/Fonts/WEB/fonts/Supreme-Extrabold.woff2") format("woff2"),
       url("supreme_complete/Fonts/WEB/fonts/Supreme-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Purity Peptides-inspired palette - Clean, clinical, professional */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  /* Text colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Accent - Steel Blue (Purity Peptides brand) */
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #dbeafe;
  --accent-bg: rgba(37, 99, 235, 0.08);
  
  /* Success/Trust green for checkmarks */
  --success: #059669;
  --success-light: #d1fae5;
  
  /* Borders */
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  
  /* Sizing */
  --maxw: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Supreme", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ============================================
   HERO SECTION - Purity Peptides Style
   ============================================ */
.hero {
  text-align: center;
  padding: 80px 0 64px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: "✓";
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
  color: var(--text-primary);
}

.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 64px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section--alt {
  background: var(--bg-secondary);
  margin: 0 -24px;
  padding: 64px 24px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

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

@media (max-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Pricing stays 3-col, handled in main responsive section */

.pricing-card {
  text-align: center;
  padding: 36px 24px;
}

.pricing-card--highlight {
  border: 2px solid var(--accent);
  background: var(--accent-bg);
}

.pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card--highlight .pricing-value {
  color: var(--accent);
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Features grid responsive handled in main responsive section */

.feature-card {
  text-align: center;
  padding: 32px 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  margin: 0 auto 16px;
  font-size: 24px;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   SHIPPING OPTIONS
   ============================================ */
.shipping-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Shipping options responsive handled in main responsive section */

.shipping-card {
  position: relative;
  text-align: center;
  padding: 32px 24px;
}

.shipping-card--featured {
  border: 2px solid var(--accent);
  background: var(--accent-bg);
}


.shipping-tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.shipping-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.shipping-card--featured .shipping-price {
  color: var(--accent);
}

.shipping-time {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps-container {
  display: grid;
  gap: 16px;
  counter-reset: step-counter;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: var(--radius-sm);
}

.step-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.step-content p {
  margin: 0 0 14px;
  color: var(--text-secondary);
}

.step-content p:last-child {
  margin-bottom: 0;
}

.step-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
}

.step-content li {
  margin: 0 0 6px;
}

.step-content li:last-child {
  margin-bottom: 0;
}

.step-content strong {
  color: var(--text-primary);
}

/* Order format code block */
.order-format {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 14px 0 0;
}

.order-format strong {
  color: var(--accent);
}

/* ============================================
   QUALITY / TRUST SECTION
   ============================================ */
.quality-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.quality-intro strong {
  color: var(--text-primary);
}

.quality-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--success-light);
  border: 1px solid var(--success);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
}

.quality-badge::before {
  content: "✓";
  font-weight: 700;
}

/* ============================================
   COA LIST - Scrollable Product Certificates
   ============================================ */
.coa-section {
  margin-top: 40px;
}

.coa-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}

.coa-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.coa-section-title::before {
  content: "📄";
}

.coa-scroll-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coa-list-container {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) var(--bg-secondary);
}

.coa-list-container::-webkit-scrollbar {
  width: 8px;
}

.coa-list-container::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.coa-list-container::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.coa-list-container::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.coa-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.coa-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.coa-item:last-child {
  border-bottom: none;
}

.coa-item:hover {
  background: var(--bg-secondary);
}

.coa-product-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.coa-product-name span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}

.coa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  background: var(--accent-bg);
  border-radius: 100px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.coa-link:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.coa-link::after {
  content: "→";
  font-size: 12px;
}

/* ============================================
   TRANSPARENCY SECTION
   ============================================ */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Transparency grid responsive handled in main responsive section */

.transparency-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.transparency-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  font-size: 18px;
  flex-shrink: 0;
}

.transparency-text {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.contact-info h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.contact-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-telegram:hover {
  color: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-telegram::before {
  content: "✈";
  font-size: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.footer a {
  color: var(--text-secondary);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

/* ============================================
   ORDER FORM
   ============================================ */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Toggle Tabs */
.form-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  padding: 4px;
}

.form-toggle-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.form-toggle-btn:hover {
  color: var(--text-primary);
}

.form-toggle-btn.active {
  background: var(--bg-primary);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Form Fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-label span {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.form-input,
.form-textarea,
.form-select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-textarea--large {
  min-height: 180px;
}

/* Order Items Section */
.order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr 120px 80px 40px;
  gap: 12px;
  align-items: end;
}

.order-item .form-group {
  gap: 6px;
}

.order-item .form-label {
  font-size: 11px;
}

.order-item .form-input,
.order-item .form-select {
  padding: 12px 14px;
  font-size: 14px;
}

.btn-remove-item {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-remove-item:hover {
  border-color: #ef4444;
  background: #fef2f2;
  color: #ef4444;
}

.btn-add-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  margin-top: 4px;
}

.btn-add-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

/* Shipping Selection */
.shipping-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shipping-option {
  position: relative;
}

.shipping-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shipping-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.shipping-option label:hover {
  border-color: var(--border-strong);
}

.shipping-option input:checked + label {
  border-color: var(--accent);
  background: var(--accent-bg);
}

.shipping-option-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.shipping-option input:checked + label .shipping-option-price {
  color: var(--accent);
}

.shipping-option-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* Submit Button */
.form-submit {
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Form Panel Visibility */
.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

/* Form Note */
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   RESPONSIVE - TABLET (900px and below)
   ============================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE - MOBILE (600px and below)
   ============================================ */
@media (max-width: 600px) {
  .page {
    padding: 0 14px 40px;
  }
  
  /* Hero - more compact */
  .hero {
    padding: 32px 14px 28px;
    margin: 0 -14px;
  }
  
  .hero-badge {
    padding: 6px 14px;
    font-size: 10px;
    margin-bottom: 16px;
  }
  
  .hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .hero-tagline {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .hero-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .hero-stats {
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .hero-stat-value {
    font-size: 28px;
  }
  
  .hero-stat-label {
    font-size: 10px;
  }
  
  /* Sections - reduced padding */
  .section {
    padding: 28px 0;
  }
  
  .section--alt {
    margin: 0 -14px;
    padding: 28px 14px;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .section-label {
    font-size: 10px;
    margin-bottom: 8px;
  }
  
  .section-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  /* Features - keep 2 columns */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .feature-card {
    padding: 16px 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feature-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .feature-desc {
    font-size: 11px;
    line-height: 1.4;
  }
  
  /* Pricing - horizontal scroll or compact 3-col */
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .pricing-card {
    padding: 16px 8px;
  }
  
  .pricing-label {
    font-size: 9px;
    margin-bottom: 6px;
  }
  
  .pricing-value {
    font-size: 28px;
    margin-bottom: 4px;
  }
  
  .pricing-desc {
    font-size: 10px;
  }
  
  /* Shipping - keep 3 columns compact */
  .shipping-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .shipping-card {
    padding: 16px 8px;
  }
  
  .shipping-tier {
    font-size: 9px;
    margin-bottom: 8px;
  }
  
  .shipping-price {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .shipping-time {
    font-size: 11px;
  }
  
  /* Steps - compact inline layout */
  .steps-container {
    gap: 10px;
  }
  
  .step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 14px;
    align-items: start;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .step-content h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .step-content p {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .step-content ul {
    font-size: 12px;
    padding-left: 16px;
  }
  
  .step-content li {
    margin-bottom: 2px;
  }
  
  .order-format {
    padding: 12px 14px;
    font-size: 11px;
    line-height: 1.7;
    margin-top: 8px;
  }
  
  /* Quality section */
  .quality-intro {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .quality-badges {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .quality-badge {
    padding: 8px 12px;
    font-size: 11px;
  }
  
  /* COA list - shorter */
  .coa-section {
    margin-top: 24px;
  }
  
  .coa-section-header {
    margin-bottom: 10px;
  }
  
  .coa-section-title {
    font-size: 14px;
  }
  
  .coa-scroll-hint {
    font-size: 10px;
  }
  
  .coa-list-container {
    max-height: 280px;
  }
  
  .coa-item {
    padding: 12px 14px;
  }
  
  .coa-product-name {
    font-size: 13px;
  }
  
  .coa-product-name span {
    font-size: 11px;
  }
  
  .coa-link {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  /* Transparency - keep 2 columns */
  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .transparency-item {
    padding: 12px;
    gap: 10px;
  }
  
  .transparency-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .transparency-text {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* Form */
  .form-toggle-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .order-item {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .order-item .form-group:first-child {
    grid-column: 1 / -1;
  }
  
  .btn-remove-item {
    width: 100%;
    grid-column: 1 / -1;
    height: 38px;
  }
  
  .shipping-select {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .shipping-option label {
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 16px;
  }
  
  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  /* Contact CTA */
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 16px;
  }
  
  .contact-info h3 {
    font-size: 18px;
  }
  
  .contact-info p {
    font-size: 13px;
  }
  
  .contact-telegram {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Footer */
  .footer {
    padding: 24px 0;
    font-size: 12px;
  }
  
  /* Cards general */
  .card {
    padding: 14px;
  }
}

/* ============================================
   RESPONSIVE - VERY SMALL (380px and below)
   ============================================ */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 24px;
  }
  
  .hero-stats {
    gap: 16px;
  }
  
  .hero-stat-value {
    font-size: 24px;
  }
  
  .pricing-value {
    font-size: 24px;
  }
  
  .shipping-price {
    font-size: 18px;
  }
  
  .features-grid {
    gap: 8px;
  }
  
  .feature-card {
    padding: 12px 8px;
  }
}
