body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.app-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid #e5e7eb;
  -webkit-backdrop-filter: blur(14px);
backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-weight: 800;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.plan-card.featured {
  border: 2px solid #2563eb;
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.18);
}

.plan-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.plan-badge.free {
  background: #f1f5f9;
  color: #334155;
}

.plan-badge.paid {
  background: #dbeafe;
  color: #1d4ed8;
}

.plan-badge.company {
  background: #f5f3ff;
  color: #6d28d9;
}

.plan-card h3 {
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.plan-price {
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 12px;
  color: #0f172a;
  letter-spacing: -0.05em;
}

.plan-price span {
  font-size: 16px;
  color: #64748b;
  font-weight: 700;
}

.plan-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 22px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.plan-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-weight: 600;
}

.plan-list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 900;
  margin-right: 10px;
}

.full-button {
  width: 100%;
  box-sizing: border-box;
}

.soft-section {
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: #0f172a;
  text-decoration: none;
}

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

.nav-links a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  margin: 0 auto 20px;
  max-width: 900px;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 20px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button.primary:hover {
  background: #1d4ed8;
}

.button.secondary {
  background: white;
  color: #0f172a;
  border-color: #e5e7eb;
}

.button.locked {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fed7aa;
}

.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: 38px;
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.section-title p {
  color: #64748b;
  font-size: 18px;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  color: #64748b;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.stat-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.stat-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

.stat-card strong {
  font-size: 26px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.page-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #e5e7eb;
}

.page-card-body {
  padding: 22px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: #e0f2fe;
  color: #075985;
}

.badge.locked {
  background: #fff7ed;
  color: #9a3412;
}

.locked-feature {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid #fed7aa;
  border-radius: 22px;
  padding: 26px;
}

.form-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-row {
  margin-bottom: 18px;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    padding: 60px 0 44px;
  }
}
.create-page {
  min-height: calc(100vh - 72px);
  padding: 18px 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fafc;
}

.create-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.create-header h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
  color: #0f172a;
}

.create-header p {
  margin: 8px 0 0;
  max-width: 720px;
  color: #64748b;
  line-height: 1.5;
}

.create-form {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.create-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.create-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.create-card p {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.5;
}

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

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

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

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #334155;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  background: #ffffff;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

input[type="color"] {
  height: 42px;
  padding: 5px;
  cursor: pointer;
}

.compact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  color: #334155;
  margin: 0 !important;
}

.check-row input {
  width: auto;
}

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

.plan-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 16px;
  padding: 13px;
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 16px;
}

.full-button {
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .create-form {
    grid-template-columns: 1fr;
  }

  .create-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .form-grid.two,
  .form-grid.three,
  .compact-options,
  .color-grid {
    grid-template-columns: 1fr;
  }
}
.beauty-top-bar {
  width: 100%;
  padding: 10px 16px;
  text-align: center;
  background: #f8d7df;
  color: #6b2137;
  font-size: 14px;
  font-weight: 700;
}

.beauty-landing-shell {
  min-height: 100vh;
  padding: 42px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(248, 215, 223, 0.75), transparent 34%),
    linear-gradient(180deg, #fff7f9 0%, #ffffff 48%, #f8fafc 100%);
}

.beauty-hero-card {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #f1d8df;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(112, 47, 70, 0.14);
}

.beauty-media-column {
  display: grid;
  gap: 16px;
}

.beauty-main-image-wrap {
  background: #fff1f5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #f3d3dc;
}

.beauty-main-image {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
}

.beauty-image-placeholder {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border: 1px dashed #e9b8c7;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7f9, #f8e7ed);
}

.beauty-placeholder-icon {
  font-size: 58px;
}

.beauty-image-placeholder h2 {
  margin: 14px 0 8px;
  color: #6b2137;
}

.beauty-image-placeholder p {
  max-width: 360px;
  margin: 0;
  color: #7a5160;
  line-height: 1.6;
}

.beauty-thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.beauty-thumbnail-row span {
  height: 82px;
  border-radius: 18px;
  border: 1px solid #f1d8df;
  background: linear-gradient(135deg, #fff7f9, #f0d2da);
}

.beauty-copy-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 4px;
}

.beauty-breadcrumb {
  color: #9b6a7b;
  font-size: 13px;
  font-weight: 700;
}

.beauty-title {
  margin: 0;
  color: #3f1826;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.beauty-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a5160;
  font-size: 14px;
  font-weight: 700;
}

.beauty-stars {
  color: #c47a8f;
  letter-spacing: 1px;
}

.beauty-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.beauty-price {
  color: #3f1826;
  font-size: 28px;
  font-weight: 900;
}

.beauty-sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff1f5;
  color: #be123c;
  font-size: 13px;
  font-weight: 800;
}

.beauty-description {
  margin: 0;
  color: #6b4754;
  font-size: 17px;
  line-height: 1.75;
}

.beauty-options {
  display: grid;
  gap: 8px;
}

.beauty-option-label {
  margin: 0;
  color: #3f1826;
  font-weight: 800;
  font-size: 14px;
}

.beauty-swatches {
  display: flex;
  gap: 10px;
}

.beauty-swatches span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #e6c5cf;
}

.beauty-swatches span:nth-child(1) {
  background: #b98995;
}

.beauty-swatches span:nth-child(2) {
  background: #b8bea8;
}

.beauty-swatches span:nth-child(3) {
  background: #d8bcae;
}

.beauty-swatches span:nth-child(4) {
  background: #f3a8bd;
}

.beauty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.beauty-main-button,
.beauty-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.beauty-main-button {
  background: #3f1826;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(63, 24, 38, 0.22);
}

.beauty-secondary-button {
  background: #fff7f9;
  color: #3f1826;
  border: 1px solid #f1d8df;
}

.beauty-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  padding-top: 8px;
}

.beauty-trust-row div {
  display: grid;
  gap: 3px;
  padding: 13px;
  border-radius: 16px;
  background: #fff7f9;
  border: 1px solid #f1d8df;
}

.beauty-trust-row strong {
  color: #3f1826;
  font-size: 13px;
}

.beauty-trust-row span {
  color: #8a6170;
  font-size: 12px;
}

.beauty-affiliate-note {
  margin: 0;
  color: #8a6170;
  font-size: 12px;
  line-height: 1.5;
}

.beauty-benefits-section {
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid #f1d8df;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(112, 47, 70, 0.08);
}

.beauty-section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 26px;
}

.beauty-section-header h2 {
  margin: 8px 0 0;
  color: #3f1826;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
}

.beauty-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.beauty-benefit-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff7f9;
  border: 1px solid #f1d8df;
}

.beauty-benefit-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.beauty-benefit-card h3 {
  margin: 0 0 8px;
  color: #3f1826;
}

.beauty-benefit-card p {
  margin: 0;
  color: #755160;
  line-height: 1.6;
  font-size: 14px;
}

.beauty-review-section {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.beauty-review-card,
.beauty-newsletter-card {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #f1d8df;
  box-shadow: 0 14px 36px rgba(112, 47, 70, 0.08);
}

.beauty-review-card p,
.beauty-newsletter-card p {
  color: #755160;
  line-height: 1.65;
}

.beauty-newsletter-card h2 {
  margin: 6px 0;
  color: #3f1826;
}

@media (max-width: 980px) {
  .beauty-hero-card,
  .beauty-review-section {
    grid-template-columns: 1fr;
  }

  .beauty-main-image {
    height: 460px;
  }

  .beauty-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .beauty-landing-shell {
    padding: 22px 0 42px;
  }

  .beauty-hero-card,
  .beauty-benefits-section {
    padding: 22px;
    border-radius: 22px;
  }

  .beauty-main-image {
    height: 340px;
  }

  .beauty-benefit-grid {
    grid-template-columns: 1fr;
  }

  .beauty-actions {
    flex-direction: column;
  }

  .beauty-main-button,
  .beauty-secondary-button {
    width: 100%;
  }
}
.beauty-thumb-button {
  width: 100%;
  height: 82px;
  padding: 0;
  border: 1px solid #f1d8df;
  border-radius: 18px;
  overflow: hidden;
  background: #fff7f9;
  cursor: pointer;
}

.beauty-thumb-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.beauty-thumb-button:hover {
  border-color: #c47a8f;
}
/* ============================================================
   PRODUCT IMAGE + GALLERY FIX
   Works for both product-* and beauty-* templates
============================================================ */

.product-media-column,
.beauty-media-column {
  display: grid;
  gap: 16px;
}

.product-main-image-wrap,
.beauty-main-image-wrap {
  width: 100%;
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.product-main-image,
.beauty-main-image {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
}

.product-thumbnail-row,
.beauty-thumbnail-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  gap: 12px;
  align-items: center;
}

.product-thumb-button,
.beauty-thumb-button {
  width: 100%;
  height: 86px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  cursor: pointer;
}

.product-thumb-button img,
.beauty-thumb-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-thumb-button:hover,
.beauty-thumb-button:hover {
  border-color: #2563eb;
}

.product-thumbnail-row span,
.beauty-thumbnail-row span {
  height: 86px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .product-main-image,
  .beauty-main-image {
    height: 430px;
  }

  .product-thumbnail-row,
  .beauty-thumbnail-row {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }
}

@media (max-width: 560px) {
  .product-main-image,
  .beauty-main-image {
    height: 320px;
  }

  .product-thumbnail-row,
  .beauty-thumbnail-row {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }
}
/* ============================================================
   GENERAL PRODUCT LANDING PAGE
   Works for every product type
============================================================ */

.product-offer-bar {
  width: 100%;
  padding: 10px 16px;
  text-align: center;
  background: #eef2ff;
  color: #3730a3;
  font-size: 14px;
  font-weight: 800;
}

.product-landing-shell {
  min-height: 100vh;
  padding: 42px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f8fafc 100%);
}

.product-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.product-media-column {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.product-main-image-wrap {
  width: 100%;
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.product-main-image {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.product-image-placeholder {
  min-height: 480px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border: 1px dashed #cbd5e1;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.product-placeholder-icon {
  font-size: 58px;
}

.product-image-placeholder h2 {
  margin: 14px 0 8px;
  color: #111827;
}

.product-image-placeholder p {
  max-width: 360px;
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.product-thumbnail-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  gap: 12px;
  align-items: center;
}

.product-thumbnail-row span {
  height: 86px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
}

.product-thumb-button {
  width: 100%;
  height: 86px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  cursor: pointer;
}

.product-thumb-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-thumb-button:hover {
  border-color: #2563eb;
}

.product-copy-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 4px;
  min-width: 0;
}

.product-breadcrumb {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.product-title {
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.product-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.product-offer-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-offer-label {
  color: #111827;
  font-size: 26px;
  font-weight: 900;
}

.product-sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 900;
}

.product-description {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.product-main-button,
.product-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.product-main-button {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.22);
}

.product-secondary-button {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  padding-top: 8px;
}

.product-trust-row div {
  display: grid;
  gap: 3px;
  padding: 13px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.product-trust-row strong {
  color: #111827;
  font-size: 13px;
}

.product-trust-row span {
  color: #64748b;
  font-size: 12px;
}

.product-affiliate-note {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.product-benefits-section {
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.product-section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 26px;
}

.product-section-header h2 {
  margin: 8px 0 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
}

.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-benefit-card {
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.product-benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
}

.product-benefit-card h3 {
  margin: 0 0 8px;
  color: #111827;
}

.product-benefit-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

.product-bottom-section {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.product-highlight-card,
.product-cta-card {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.product-highlight-card p,
.product-cta-card p {
  color: #475569;
  line-height: 1.65;
}

.product-cta-card h2 {
  margin: 6px 0;
  color: #111827;
}

.product-inline-link {
  display: inline-flex;
  margin-top: 10px;
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}

.product-inline-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .product-hero-card,
  .product-bottom-section {
    grid-template-columns: 1fr;
  }

  .product-main-image {
    height: 430px;
  }

  .product-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-thumbnail-row {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }
}

@media (max-width: 640px) {
  .product-landing-shell {
    padding: 22px 0 42px;
  }

  .product-hero-card,
  .product-benefits-section {
    padding: 22px;
    border-radius: 22px;
  }

  .product-main-image {
    height: 320px;
  }

  .product-benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-main-button,
  .product-secondary-button {
    width: 100%;
  }

  .product-thumbnail-row {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }
}
/* ============================================================
   DASHBOARD PAGE FIX
============================================================ */

.dashboard-head,
.dashboard-header {
  padding: 42px 0 24px;
  background: #f8fafc;
}

.dash-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.dash-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
  align-items: stretch;
  padding: 28px 0 70px;
}

.page-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  max-width: 420px;
}

.page-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: contain;
  background: #f1f5f9;
  border-bottom: 1px solid #e5e7eb;
}

.page-placeholder {
  height: 230px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}

.page-card-body {
  padding: 22px;
}

.page-card-body h3,
.page-card h3 {
  margin: 12px 0 10px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.page-card-body p,
.page-card p {
  color: #475569;
  line-height: 1.55;
  margin: 0 0 14px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.page-actions a,
.page-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.page-actions a:hover,
.page-card a:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.page-card form {
  margin-top: 8px;
}

.page-card button,
.page-card input[type="submit"] {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #be123c;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 760px) {
  .dash-grid {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .page-card {
    max-width: none;
  }
}
/* ============================================================
   AUTH PAGES
============================================================ */

.auth-section {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
    #f8fafc;
}

.auth-card {
  width: min(460px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.auth-card h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.auth-text {
  margin: 0 0 24px;
  color: #64748b;
  line-height: 1.6;
}

.auth-footer {
  margin: 18px 0 0;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.auth-footer a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}
/* ============================================================
   PRICING PAGE
============================================================ */

.pricing-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34%),
    #f8fafc;
}

.pricing-page .section-title h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.pricing-page .section-title p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card .button {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
.business-page {
  min-height: calc(100vh - 80px);
  padding: 48px 18px;
  background: #f8fafc;
}

.business-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.eyebrow {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  color: #64748b;
  line-height: 1.7;
}

.business-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  color: #0f172a;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #ffffff;
}

.info-box {
  margin: 24px 0;
  padding: 18px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
}

.info-box code {
  display: block;
  overflow-x: auto;
  padding: 12px;
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 12px;
}

.brand-preview {
  padding: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #f8fafc;
}

.brand-preview img {
  display: block;
  max-width: 220px;
  max-height: 120px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
}

.banner-preview img {
  max-width: 100%;
  max-height: 220px;
}
.brand-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.delete-brand-form {
  margin-top: 14px;
}

.button.danger {
  background: #dc2626;
  color: #ffffff;
  border: 1px solid #dc2626;
}

.button.danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.form-group small {
  color: #64748b;
  font-size: 13px;
}
.dashboard-card {
  max-width: 1100px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 10px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.stat-card {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
}

.stat-card span {
  display: block;
  color: #64748b;
  font-size: 13px;
  margin-bottom: 8px;
}

.stat-card strong {
  display: block;
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-divider {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.data-table th {
  color: #475569;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f8fafc;
}

.data-table code {
  display: inline-block;
  padding: 4px 7px;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 8px;
}

.empty-state-box {
  margin-top: 16px;
  padding: 24px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #f8fafc;
}

@media (max-width: 760px) {
  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}
.flash-box {
  max-width: 900px;
  margin: 16px auto;
  padding: 14px 18px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
  border-radius: 14px;
  font-weight: 700;
}
.inline-delete-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-delete-form input {
  max-width: 160px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 10px;
}

.inline-delete-form .button {
  padding: 8px 12px;
}
.row-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.row-actions form {
  margin: 0;
}

.inline-delete-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-delete-form input {
  max-width: 160px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 10px;
}

.inline-delete-form .button,
.row-actions .button {
  padding: 8px 12px;
}

.ai-reasons {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}