/* ===== Self-hosted Vazirmatn (OFL) ===== */
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn/Vazirmatn-Regular.cdc140628f11.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn/Vazirmatn-Medium.dd2193b32cbe.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn/Vazirmatn-SemiBold.9260c1927872.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn/Vazirmatn-Bold.7958481fe611.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn/Vazirmatn-ExtraBold.a0f99309cd35.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===== Design tokens ===== */
:root {
  --font-sans: "Vazirmatn", "IRANSans", "Segoe UI", Tahoma, Arial, sans-serif;

  --brand-50: #eef2ff;
  --brand-100: #e0e7ff;
  --brand-200: #c7d2fe;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;

  --pink-500: #ec4899;
  --amber-500: #f59e0b;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --danger-500: #ef4444;
  --danger-600: #dc2626;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.14);
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

h1, h2, h3 {
  line-height: 1.35;
  margin: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logotype {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
}

.logotype-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.logotype-accent {
  background: linear-gradient(90deg, var(--brand-600), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-links > a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links > a:hover {
  color: var(--gray-900);
}

.nav-links > a.btn,
.nav-links > a.btn:hover,
.mobile-menu > a.btn,
.mobile-menu > a.btn:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

[x-cloak] {
  display: none !important;
}

@media (max-width: 720px) {
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 18px;
    border-top: 1px solid var(--gray-200);
    background: #fff;
  }

  .mobile-menu > a,
  .mobile-menu > form {
    padding: 10px 4px;
    border-bottom: 1px solid var(--gray-100);
  }

  .mobile-menu > a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
  }

  .mobile-menu > form {
    border-bottom: none;
  }

  .mobile-menu .btn {
    width: 100%;
  }
}

main {
  padding: 40px 0 80px;
  min-height: 60vh;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--gray-200);
  padding: 28px 0;
  color: var(--gray-500);
  font-size: 13px;
}

.site-footer .bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  background: var(--gray-900);
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

.btn.secondary {
  background: #fff;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn.danger {
  background: var(--danger-600);
}

.btn.small {
  padding: 7px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== Status badges ===== */
.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
}

.status-draft { background: var(--gray-100); color: var(--gray-600); }
.status-pending_review { background: #fef3c7; color: #92400e; }
.status-approved { background: #dcfce7; color: #166534; }
.status-rejected { background: #fee2e2; color: #991b1b; }

/* ===== Cards & layout helpers ===== */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 40px 0 14px;
}

.section-title:first-child {
  margin-top: 0;
}

.page-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.subtitle {
  color: var(--gray-500);
  font-size: 14px;
  margin-top: 4px;
}

.empty-state {
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 12px;
}

.empty {
  color: var(--gray-500);
  font-size: 14px;
}

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

/* ===== Messages ===== */
.messages {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.messages li {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-700);
  margin-bottom: 8px;
  font-size: 14px;
  border: 1px solid var(--brand-100);
}

/* ===== Forms ===== */
form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.7;
}

select {
  cursor: pointer;
}

input:hover, textarea:hover, select:hover {
  border-color: var(--gray-300);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-500);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-100);
}

input[type="checkbox"] {
  width: auto;
}

input::placeholder, textarea::placeholder {
  color: var(--gray-400);
}

ul.errorlist {
  list-style: none;
  padding: 10px 14px;
  margin: 8px 0 0;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--danger-600);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
}

/* --- Shared styled-form field wrapper (used by business/item/auth/contact forms) --- */
.styled-form .field {
  margin-bottom: 20px;
}

.styled-form .field:last-of-type {
  margin-bottom: 0;
}

.styled-form .field-required {
  color: var(--danger-500);
  margin-inline-start: 3px;
}

.styled-form .field-help {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

.styled-form .field-error input,
.styled-form .field-error textarea,
.styled-form .field-error select {
  border-color: var(--danger-500);
  background: #fef2f2;
}

.styled-form .field-checkbox {
  display: flex;
  align-items: flex-start;
}

.styled-form .field-checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  margin-bottom: 0 !important;
}

.styled-form .field-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-600);
  cursor: pointer;
}

/* --- File upload field (custom button, no native input UI) --- */
.file-upload-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.file-upload-btn {
  cursor: pointer;
  white-space: nowrap;
}

.file-upload-name {
  font-size: 13px;
  color: var(--gray-500);
  overflow-wrap: anywhere;
}

.file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-current {
  margin-bottom: 10px;
}

.file-current-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.file-clear-label {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray-500);
  cursor: pointer;
  margin-bottom: 0 !important;
}

.file-preview-thumb {
  display: none;
  flex-basis: 100%;
  max-width: 160px;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  margin-top: 10px;
}

.file-preview-thumb.visible {
  display: block;
}

.auth-card {
  max-width: 420px;
  margin: 40px auto 0;
}

/* ===== Home hero ===== */
.hero-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.hero-blob.b1 { width: 320px; height: 320px; background: var(--brand-500); top: -100px; right: -60px; }
.hero-blob.b2 { width: 260px; height: 260px; background: var(--pink-500); bottom: -80px; left: -40px; animation-delay: -4s; }
.hero-blob.b3 { width: 200px; height: 200px; background: var(--amber-500); top: 40%; left: 30%; animation-delay: -8s; }

@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 20px 48px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--gray-500);
  font-size: 17px;
  max-width: 520px;
  margin: 14px auto 26px;
}

.section-heading-lg {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin: 64px 0 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-grid .card {
  text-align: center;
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}

.theme-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.theme-preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.theme-preview-swatch {
  height: 90px;
}

.theme-preview-label {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  background: #fff;
}

.cta-band {
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gray-900), #1e1b4b);
  color: #fff;
  margin: 72px 0 32px;
}

.cta-band h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--gray-300);
  margin-bottom: 22px;
}

.cta-band .btn {
  background: #fff;
  color: var(--gray-900);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

/* ===== Generic content grid (portfolio thumbnails, discover cards) ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--business-primary, var(--gray-900));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.biz-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.biz-minimal .biz-hashtags {
  justify-content: center;
}

.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background: #fff;
}

.chip.active {
  background: var(--gray-900);
  color: #fff;
  border-color: var(--gray-900);
}

.discover-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border-top: 3px solid var(--card-accent, var(--gray-900));
}

/* =====================================================================
   Public business page — shared bits + 3 distinct layout presentations
   ===================================================================== */

.biz-page {
  --biz-primary: var(--business-primary, var(--gray-900));
  --biz-secondary: var(--business-secondary, var(--gray-400));
  max-width: 720px;
  margin: 0 auto;
}

.biz-draft-banner {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 20px;
}

.biz-section-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 36px 0 14px;
}

.biz-contact-form {
  max-width: 480px;
  margin: 0 auto;
}

/* --- Contact icon row --- */
.biz-contact-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.biz-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--biz-primary, var(--gray-700));
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.biz-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.biz-icon-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Footer contact band --- */
.biz-footer-band {
  margin-top: 48px;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--biz-primary) 6%, #fff);
  text-align: center;
}

.biz-footer-band .biz-section-heading {
  text-align: center;
  margin-top: 0;
}

/* --- FAQ accordion (native details/summary) --- */
.biz-faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fff;
}

.biz-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.biz-faq-item summary::-webkit-details-marker {
  display: none;
}

.biz-faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--gray-400);
  transition: transform 0.15s ease;
}

.biz-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.biz-faq-item p {
  margin: 12px 0 0;
  color: var(--gray-600);
}

/* --- Shared base for services grid, portfolio grid (themed below) --- */
.biz-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.service-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 16px;
  height: 16px;
}

.service-card-body p {
  margin: 6px 0 0;
  color: var(--gray-600);
  font-size: 14px;
}

.biz-portfolio-item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.biz-portfolio-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.biz-portfolio-caption {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gray-600);
}

/* =====================================================================
   Classic — traditional, structured, bordered. Serif-leaning weight,
   uniform grid, boxed sections.
   ===================================================================== */
.biz-classic .biz-name {
  font-family: Georgia, "Times New Roman", serif;
}

.biz-classic .biz-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.biz-classic .biz-cover {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--biz-primary);
}

.biz-classic .biz-hero-body {
  padding: 24px;
  background: #fff;
}

.biz-classic .biz-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -58px;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.biz-classic .biz-name {
  font-size: 27px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.biz-classic .biz-section-heading {
  border-bottom: 2px solid var(--biz-primary);
  padding-bottom: 8px;
  display: inline-block;
}

.biz-classic .biz-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.biz-classic .biz-portfolio-item img {
  height: 140px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.biz-classic .service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: #fff;
  border-inline-start: 3px solid var(--biz-primary);
}

.biz-classic .service-card-icon {
  background: var(--gray-100);
  color: var(--biz-primary);
}

.biz-classic .biz-faq-item {
  border-radius: var(--radius-sm);
}

/* =====================================================================
   Modern — bold, colorful, playful. Gradient hero, floating card,
   pill buttons, masonry portfolio, colorful icon chips.
   ===================================================================== */
.biz-modern .biz-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}

.biz-modern .biz-cover {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, var(--biz-primary), var(--biz-secondary));
  display: flex;
  align-items: flex-end;
}

.biz-modern .biz-hero-body {
  position: relative;
  margin: -56px 20px 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}

.biz-modern .biz-logo {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-top: -70px;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.biz-modern .biz-name {
  font-size: 31px;
  font-weight: 800;
  margin: 14px 0 8px;
  letter-spacing: -0.01em;
}

.biz-modern .btn {
  border-radius: var(--radius-full);
}

.biz-modern .biz-section-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.biz-modern .biz-section-heading::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--biz-primary);
}

.biz-modern .biz-portfolio-grid {
  columns: 3 160px;
  column-gap: 12px;
}

.biz-modern .biz-portfolio-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

.biz-modern .biz-portfolio-item img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.biz-modern .service-card {
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.biz-modern .service-card-icon {
  background: var(--biz-primary);
  color: #fff;
}

.biz-modern .biz-faq-item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* =====================================================================
   Minimal — quiet, editorial. No boxes, thin weight, dividers only,
   tight small-scale portfolio grid.
   ===================================================================== */
.biz-minimal {
  max-width: 600px;
  margin: 0 auto;
}

.biz-minimal .biz-hero {
  text-align: center;
  padding: 20px 0 32px;
}

.biz-minimal .biz-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}

.biz-minimal .biz-cover {
  display: none;
}

.biz-minimal .biz-name {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.biz-minimal .tag {
  background: transparent;
  color: var(--biz-primary);
  border: 1px solid currentColor;
  padding: 3px 10px;
}

.biz-minimal .biz-section-heading {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gray-400);
}

.biz-minimal .biz-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 6px;
}

.biz-minimal .biz-portfolio-item img {
  height: 100px;
}

.biz-minimal .biz-portfolio-caption {
  display: none;
}

.biz-minimal .biz-services-grid {
  grid-template-columns: 1fr;
}

.biz-minimal .service-card {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 14px;
}

.biz-minimal .service-card-icon {
  background: transparent;
  color: var(--biz-primary);
  width: 20px;
  height: 20px;
}

.biz-minimal .biz-faq-item {
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  padding: 14px 0;
}

.biz-minimal .biz-footer-band {
  background: transparent;
  border-top: 1px solid var(--gray-200);
  border-radius: 0;
}

.biz-minimal .btn {
  background: var(--biz-primary);
}
