@import url('');

:root {
  --pink: #ef3e70;
  --pink-dark: #d92c60;
  --pink-soft: #fff0f5;
  --pink-softer: #fff8fa;
  --pink-border: #f8d8e3;
  --ink: #171517;
  --text: #252126;
  --muted: #6e666b;
  --line: #eae4e7;
  --white: #ffffff;
  --warm: #f8f5f6;
  --dark-card: #211f21;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 60px rgba(74, 27, 45, 0.14);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  width: 100%;
}

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

.section {
  padding: 88px 0;
}

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

/* Header */
.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  height: 92px;
}

.nav-wrap {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(239, 62, 112, 0.22);
}

.brand-name {
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a,
.marketplace-link {
  transition: color .2s ease;
}

.main-nav a:hover,
.marketplace-link:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  position: relative;
  z-index: 5;
}

.marketplace-link {
  font-size: 15px;
  font-weight: 600;
}

.language-switcher {
  display: inline-flex;
  position: relative;
  z-index: 6;
  padding: 4px;
  border: 1px solid rgba(239, 62, 112, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.language-option {
  min-width: 46px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  pointer-events: auto;
}

.language-option.active {
  color: white;
  background: var(--pink);
}

.menu-button {
  display: none;
}

/* Buttons */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(239, 62, 112, .25);
}

.button-primary:hover {
  background: var(--pink-dark);
}

.button-secondary {
  border-color: rgba(34, 29, 32, .14);
  background: rgba(255,255,255,.72);
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(23, 21, 23, .16);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: 165px 0 100px;
  background:
    radial-gradient(circle at 73% 48%, rgba(255,255,255,.9) 0 8%, transparent 30%),
    linear-gradient(112deg, #fffafc 0%, #fff2f6 45%, #ffd8e5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(255,255,255,.55), transparent);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -80px;
  background: rgba(239, 62, 112, .11);
}

.hero-orb-two {
  width: 290px;
  height: 290px;
  left: 41%;
  bottom: -160px;
  background: rgba(239, 62, 112, .09);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding-top: 5px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid var(--pink-border);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  text-transform: none;
  letter-spacing: 0;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(239,62,112,.12);
}

.hero h1 {
  max-width: 680px;
  margin: 26px 0 24px;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 74px);
  line-height: .99;
  letter-spacing: -4.5px;
}

.hero-description {
  max-width: 620px;
  margin: 0;
  color: #5e575b;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 26px;
  color: #61595e;
  font-size: 13px;
  font-weight: 650;
}

.hero-assurances > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.check {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(239, 62, 112, .1);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

/* Hero mockup */
.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.storefront-card {
  position: relative;
  width: 520px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 28px;
  background: rgba(255,255,255,.91);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translate(18px, 20px);
}

.browser-top {
  height: 49px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.84);
}

.browser-top > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d3d6;
}

.browser-address {
  width: 220px;
  height: 25px;
  margin-left: 10px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #8b8287;
  background: #f5f1f3;
  font-size: 10px;
}

.storefront-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 18px;
}

.small-label {
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.storefront-header h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 21px;
}

.store-status {
  align-self: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #2c7754;
  background: #e8f7ef;
  font-size: 11px;
  font-weight: 750;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 18px 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid #eee8eb;
  border-radius: 18px;
  background: white;
}

.product-visual {
  height: 123px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-visual svg {
  width: 92%;
  height: 92%;
}

.product-dessert .product-visual { background: #f5d6d2; }
.product-flower .product-visual { background: #ffd7e4; }
.product-perfume .product-visual { background: #b8dafa; }
.product-gift .product-visual { background: #d6cbc2; }

.product-card strong,
.product-card > span {
  display: block;
  padding-inline: 12px;
}

.product-card strong {
  margin-top: 11px;
  color: var(--ink);
  font-size: 14px;
}

.product-card > span {
  margin: 4px 0 12px;
  color: #847b80;
  font-size: 11px;
}

.floating-card {
  position: absolute;
  z-index: 4;
}

.seller-chip {
  top: 27px;
  left: -10px;
  width: 286px;
  min-height: 88px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(71, 30, 47, .14);
  backdrop-filter: blur(16px);
}

.seller-avatar {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffc3d6, #ee4c7a);
  font-size: 24px;
}

.seller-chip-copy strong,
.seller-chip-copy span {
  display: block;
}

.seller-chip-copy strong {
  color: var(--ink);
}

.seller-chip-copy span {
  margin-top: 4px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 750;
}

.seller-tags {
  grid-column: 2;
  display: flex;
  gap: 5px;
  margin-top: -14px;
}

.seller-tags span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #f5f1f3;
  font-size: 9px;
  font-weight: 700;
}

.order-card {
  top: 45px;
  right: -4px;
  width: 250px;
  padding: 18px;
  border-radius: 23px;
  color: white;
  background: var(--dark-card);
  box-shadow: 0 30px 55px rgba(32, 25, 29, .28);
}

.order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.order-card-top span,
.customer-box span,
.customer-box small {
  color: #b7afb3;
  font-size: 10px;
}

.order-card-top strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.pending-pill {
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffb7ca !important;
  background: rgba(239, 62, 112, .2);
  font-weight: 700;
}

.customer-box {
  margin: 16px 0 12px;
  padding: 12px;
  border-radius: 14px;
  background: #353235;
}

.customer-box strong,
.customer-box small {
  display: block;
}

.customer-box strong {
  margin: 4px 0;
  font-size: 13px;
}

.order-line,
.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #464146;
  font-size: 11px;
}

.order-line strong {
  font-size: 11px;
}

.order-total {
  border: 0;
}

.order-total span {
  color: #c0b7bc;
}

.order-total strong {
  color: #ff9fbb;
  font-size: 17px;
}

.visual-caption {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  color: #756b70;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  transform: translateX(-47%);
  font-size: 11px;
  font-weight: 700;
}

.visual-caption i {
  color: var(--pink);
  font-style: normal;
}

/* Shared heading */
.section-heading h2,
.center-heading h2,
.customer-copy h2,
.trust-heading h2,
.cta-copy h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.center-heading p {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.narrow-heading {
  max-width: 650px;
}

/* Problem */
.problem-section {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.problem-copy > p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.message-stack {
  position: relative;
  min-height: 280px;
  margin-top: 38px;
  padding: 28px;
  border-radius: 28px;
  background: var(--pink-softer);
}

.message-bubble {
  width: fit-content;
  max-width: 78%;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(58,33,43,.06);
}

.customer-message {
  margin-right: auto;
  border-bottom-left-radius: 5px;
  background: white;
}

.seller-message {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  color: white;
  background: var(--pink);
}

.message-note {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 220px;
  padding: 14px;
  border: 1px dashed #dd9eb2;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  transform: rotate(-2deg);
}

.message-note span,
.message-note strong {
  display: block;
}

.message-note span {
  color: #8a7f84;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.message-note strong {
  margin-top: 4px;
  color: var(--pink-dark);
  font-size: 13px;
}

/* How */
.how-section {
  border-top: 1px solid var(--line);
  background: #fbf9fa;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  border: 1px solid #eae5e7;
  border-radius: 24px;
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 42px rgba(49, 30, 38, .08);
}

.step-number {
  color: #c9bec3;
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 49px 0 29px;
  border-radius: 18px;
  color: var(--pink);
  background: var(--pink-soft);
}

.step-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -.5px;
}

.step-card p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Benefits */
.benefits-section {
  background: white;
}

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

.benefit-card {
  padding: 20px 20px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
}

.benefit-visual {
  height: 220px;
  margin-bottom: 26px;
  padding: 24px;
  border-radius: 20px;
  background: var(--pink-softer);
}

.benefit-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.benefit-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.questions-visual {
  position: relative;
  overflow: hidden;
}

.mini-bubble {
  position: absolute;
  padding: 9px 13px;
  border-radius: 13px;
  color: #61565b;
  background: white;
  box-shadow: 0 8px 20px rgba(75,34,50,.07);
  font-size: 12px;
}

.mini-bubble:nth-child(1) { top: 30px; left: 25px; }
.mini-bubble:nth-child(2) { top: 77px; right: 27px; }
.mini-bubble:nth-child(3) { top: 121px; left: 41px; }

.store-answer {
  position: absolute;
  right: 28px;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 14px;
  color: white;
  background: var(--ink);
}

.store-answer span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 12px;
}

.store-answer small {
  font-size: 10px;
}

.orders-visual {
  display: grid;
  align-content: center;
  gap: 10px;
}

.order-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 13px;
  background: white;
  box-shadow: 0 8px 18px rgba(75,34,50,.05);
  font-size: 12px;
}

.order-row strong {
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.pending-dot { background: #f0a34f; }
.confirmed-dot { background: #6189dd; }
.completed-dot { background: #52a877; }

.customers-visual {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 13px;
}

.customer-avatar {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: var(--pink);
  font-weight: 800;
}

.customers-visual > div:nth-child(2) {
  align-self: center;
}

.customers-visual strong,
.customers-visual span {
  display: block;
}

.customers-visual span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.customer-order-count {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 16px;
  border-radius: 15px;
  background: white;
}

.customer-order-count strong {
  color: var(--pink);
  font-size: 27px;
}

/* Customer */
.customer-section {
  overflow: hidden;
  background: linear-gradient(120deg, #fff2f6, #ffdce7);
}

.customer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.customer-copy p {
  max-width: 590px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 650;
}

.feature-list li > span:first-child {
  width: auto;
  height: auto;
  min-width: 1.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 0;
  color: inherit;
  background: none;
  background-color: transparent;
  box-shadow: none;
  font-size: 18px;
  line-height: 1;
}

.phone-scene {
  position: relative;
  width: min(100%, 610px);
  height: 530px;
  min-height: 530px;
  justify-self: center;
}

.phone {
  position: absolute;
  width: 258px;
  height: 510px;
  padding: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(46, 38, 41, 0.12);
  border-radius: 39px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 28px 65px rgba(61, 40, 48, 0.10),
    0 4px 12px rgba(61, 40, 48, 0.04);
}

.phone-one {
  top: 12px;
  left: 48px;
  z-index: 2;
  transform: rotate(-7deg);
}

.phone-one .phone-content.mkt-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 42px 12px 14px;
  border-radius: 31px;
  background: var(--pink-softer);
  overflow: hidden;
}

.mkt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.mkt-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.mkt-brand-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
}

.mkt-brand strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mkt-menu {
  width: 28px;
  height: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3.5px;
  flex: 0 0 auto;
}

.mkt-menu i {
  display: block;
  width: 14px;
  height: 1.6px;
  border-radius: 999px;
  background: #8a7f84;
}

.mkt-hero {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  margin-bottom: 10px;
  text-align: start;
}

.mkt-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: start;
}

.mkt-sub {
  margin: 0;
  color: #9a9096;
  font-size: 9px;
  line-height: 1.4;
  text-align: start;
}

.mkt-search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 11px;
  border: 1px solid var(--pink-border);
  border-radius: 999px;
  color: #a3999f;
  font-size: 9.5px;
  font-weight: 500;
  text-align: start;
  background: #ffffff;
}

.mkt-cats {
  display: flex;
  gap: 6px;
  margin: 0 0 10px;
  overflow: hidden;
}

.mkt-cats span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ffffff;
  color: #6b6166;
  font-size: 8.5px;
  font-weight: 650;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px #ece6e9;
}

.mkt-cats span.is-active {
  background: var(--pink);
  color: #ffffff;
  box-shadow: none;
  padding: 5px 9px;
}

.mkt-stores {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
  overflow: hidden;
}

.mkt-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  box-sizing: border-box;
  min-height: 98px;
  height: 98px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(61, 40, 48, 0.04);
}

.mkt-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(23, 21, 23, 0.06);
}

.mkt-logo-basborino {
  background-image: url("assets/basborino-logo.png");
  background-color: #561624;
  background-size: cover;
}

.mkt-logo-dc {
  background-image:
    radial-gradient(circle at 50% 42%, #f7d8a8 0 18%, transparent 19%),
    linear-gradient(160deg, #f4c08a, #b84d45 55%, #6b2a2a);
}

.mkt-logo-reema {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 14px;
  background: var(--pink);
  color: #ffffff;
  box-shadow: none;
}

.mkt-logo-reema span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.mkt-logo-reema small {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mkt-card-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  min-width: 0;
  text-align: start;
}

.mkt-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}

.mkt-card-copy strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mkt-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px;
}

.mkt-tags span {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f3f0f1;
  color: #6b6166;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.mkt-card-copy > small {
  color: #8a7f84;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.3;
  text-align: start;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mkt-open {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f0faf3;
  color: #2f8f5b;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.phone-two {
  top: 18px;
  right: 48px;
  z-index: 3;
  transform: rotate(1.5deg);
}

.phone-two .phone-content.mkt-storefront {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 42px 12px 14px;
  border-radius: 31px;
  background: var(--pink-softer);
  overflow: hidden;
  text-align: start;
}

.mkt-storefront .msf-hero-card {
  position: relative;
  padding: 12px 12px 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(239, 62, 112, 0.06);
}

.mkt-storefront .msf-hero-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-inline-end: 48px;
}

.mkt-storefront .msf-side-actions {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.mkt-storefront .msf-more,
.mkt-storefront .msf-lang {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
  font-style: normal;
}

.mkt-storefront .msf-more {
  border: 1px solid var(--pink-border);
  background: #ffffff;
  color: #9a8a90;
  font-size: 11px;
  font-weight: 700;
}

.mkt-storefront .msf-lang {
  background: var(--pink);
  color: #ffffff;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mkt-storefront .msf-identity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.mkt-storefront .msf-identity-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  min-width: 0;
  text-align: start;
}

.mkt-storefront .msf-identity-text strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.mkt-storefront .msf-url {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pink);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.mkt-storefront .msf-url i {
  width: 9px;
  height: 9px;
  border: 1.2px solid currentColor;
  border-radius: 2px;
  box-shadow: 1.5px 1.5px 0 currentColor;
  opacity: 0.9;
}

.mkt-storefront .msf-logo {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--pink);
  color: #ffffff;
  gap: 1px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mkt-storefront .msf-logo-basborino {
  background-image: url("assets/basborino-logo.png");
  background-color: #561624;
}

.mkt-storefront .msf-logo span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.mkt-storefront .msf-logo small {
  font-size: 4.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mkt-storefront .msf-desc {
  margin: 10px 0 0;
  color: #6b6166;
  font-size: 9px;
  line-height: 1.45;
  text-align: start;
}

.mkt-storefront .msf-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 10px;
}

.mkt-storefront .msf-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 8px;
  font-weight: 700;
}

.mkt-storefront .msf-cats {
  display: flex;
  gap: 6px;
  overflow: hidden;
  padding: 0 2px;
}

.mkt-storefront .msf-cats span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3ecef;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.mkt-storefront .msf-cats span.is-active {
  background: var(--pink);
  color: #ffffff;
}

.mkt-storefront .msf-product {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 8px;
  align-items: center;
  box-sizing: border-box;
  height: 68px;
  min-height: 68px;
  padding: 8px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(239, 62, 112, 0.05);
}

.mkt-storefront .msf-add {
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.mkt-storefront .msf-product-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
  min-width: 0;
  text-align: start;
}

.mkt-storefront .msf-product-copy strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
}

.mkt-storefront .msf-product-copy small {
  color: #8a7f84;
  font-size: 8px;
  line-height: 1;
}

.mkt-storefront .msf-product-copy em {
  color: var(--pink);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.mkt-storefront .msf-product-image {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #f3ecef;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mkt-storefront .msf-img-one {
  background-image: url("assets/basborino-mixed-box.jpg");
}

.mkt-storefront .msf-img-two {
  background-image: url("assets/basborino-original-box.jpg");
}

.mkt-storefront .msf-img-three {
  background-image: url("assets/basborino-single.jpg");
}

.mkt-storefront-basborino {
  --store-accent: #561624;
  --store-accent-soft: #f7f0f1;
  --store-accent-border: #e5d5d8;
  --store-accent-muted: #7a3a45;
  background: #faf6f6;
}

.mkt-storefront-basborino .msf-hero-card {
  box-shadow: 0 8px 20px rgba(86, 22, 36, 0.06);
}

.mkt-storefront-basborino .msf-more {
  border-color: var(--store-accent-border);
  color: #9a8589;
}

.mkt-storefront-basborino .msf-lang {
  background: var(--store-accent);
}

.mkt-storefront-basborino .msf-url {
  color: var(--store-accent);
}

.mkt-storefront-basborino .msf-tags span {
  background: var(--store-accent-soft);
  color: var(--store-accent-muted);
}

.mkt-storefront-basborino .msf-cats span {
  background: #f1eaea;
}

.mkt-storefront-basborino .msf-cats span.is-active {
  background: var(--store-accent);
  color: #ffffff;
}

.mkt-storefront-basborino .msf-product {
  box-shadow: 0 6px 14px rgba(86, 22, 36, 0.05);
}

.mkt-storefront-basborino .msf-product-copy em {
  color: var(--store-accent);
}

.mkt-storefront-basborino .msf-add {
  background: var(--store-accent);
}

.mkt-storefront-basborino .msf-product-image {
  background-color: #f1eaea;
}

/* Marketplace mocks set dir via [data-mock-dir]; logical props above mirror layout. */

.phone-notch {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 68px;
  height: 7px;
  border-radius: 999px;
  background: #ded9db;
  transform: translateX(-50%);
}

.phone-content {
  height: 100%;
  padding: 38px 14px 16px;
  border-radius: 31px;
  background: #ffffff;
  overflow: hidden;
}

.phone-store-head {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-logo {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--pink);
  font-weight: 800;
}

.phone-store-head strong,
.phone-store-head span {
  display: block;
}

.phone-store-head span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.phone-cover {
  height: 185px;
  margin-top: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 38%, #ffc3d2 0 15%, transparent 16%),
    radial-gradient(circle at 65% 37%, #f5688e 0 16%, transparent 17%),
    linear-gradient(135deg, #ffb8cb, #ef4977);
}

.phone-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.phone-items div {
  height: 104px;
  border-radius: 13px;
  background: #f2eef0;
}

.phone-items div:first-child {
  background: #f4d5d1;
}

.phone-items div:last-child {
  background: #d7e5f5;
}

.phone-button {
  display: grid;
  place-items: center;
  height: 44px;
  margin-top: 13px;
  border-radius: 12px;
  color: white;
  background: var(--pink);
  font-size: 12px;
  font-weight: 750;
}

.phone-two .phone-content:not(.mkt-storefront) {
  padding-top: 48px;
  text-align: center;
}

.order-confirm-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: white;
  background: var(--pink);
  box-shadow: 0 0 0 12px var(--pink-soft);
  font-size: 30px;
  font-weight: 900;
}

.phone-two h4 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
}

.phone-two p {
  margin: 11px 0 30px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 12px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
}

.dark-phone-button {
  margin-top: 38px;
  background: var(--ink);
}

/* Categories / store views */
.categories-section {
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
}

.categories-grid.store-views-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  align-items: stretch;
}

.category-card {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(46, 38, 41, 0.06);
  border-radius: 25px;
  background: white;
}

.category-art {
  height: 250px;
  display: grid;
  place-items: center;
  padding: 16px 14px;
}

.store-view .category-art {
  height: auto;
  min-height: 168px;
  padding: 18px 14px 14px;
}

.category-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 260px;
}

.store-view .category-item-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 168px;
}

.category-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.42);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.store-view .category-item {
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.55);
}

.category-food .category-art { background: #f7ddd8; }
.category-products .category-art { background: #d9eafa; }
.category-made .category-art { background: #eee0d8; }
.category-courses .category-art { background: #f9e0e9; }

.store-view-desserts .category-art { background: #f8e0e8; }
.store-view-kitchen .category-art { background: #f6e2d6; }
.store-view-beauty .category-art { background: #dde8f8; }
.store-view-flowers .category-art { background: #e3efe6; }
.store-view-fashion .category-art { background: #ebe4f2; }

.category-content {
  padding: 22px;
  text-align: center;
}

.store-view .category-content {
  padding: 16px 14px 18px;
}

.category-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.store-view .category-content h3 {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.store-view-url {
  margin: 6px 0 0 !important;
  color: var(--pink) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.category-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.store-view .category-content p:not(.store-view-url) {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

/* Trust */
.trust-section {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 214, 226, 0.55), transparent 36%),
    radial-gradient(circle at 92% 78%, rgba(255, 226, 235, 0.45), transparent 32%),
    linear-gradient(160deg, #fff8fa 0%, #ffffff 48%, #fff5f8 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 64px;
  align-items: center;
}

.light-kicker {
  color: var(--pink);
}

.trust-heading h2 {
  color: var(--ink);
}

.trust-heading p {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.trust-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.trust-cta-button {
  width: 290px;
  max-width: 100%;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(239, 62, 112, 0.28);
}

.trust-cta-button:hover {
  background: var(--pink-dark);
}

.trust-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7f777b;
  font-size: 12px;
  font-weight: 400;
}

.trust-cta-note i {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: #ffe8ef;
  color: #ef3e70;
  font-size: 9px;
  font-style: normal;
  box-shadow: none;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-list article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 0;
  padding: 18px 16px 20px;
  border: 1px solid #ece7e9;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(74, 27, 45, 0.05);
}

.trust-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.trust-list article > div {
  min-width: 0;
  flex: 1;
}

.trust-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.trust-list p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 12px;
}

/* CTA */
.cta-section {
  background: white;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: end;
  padding: 68px;
  border: 1px solid var(--pink-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.9), transparent 26%),
    linear-gradient(120deg, #fff2f6, #ffd7e4);
}

.cta-copy h2 {
  font-size: clamp(38px, 4vw, 55px);
}

.cta-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.cta-actions span {
  color: #756a70;
  font-size: 12px;
  font-weight: 650;
}

/* Footer */
.site-footer {
  padding: 56px 0 36px;
  border-top: 1px solid #ece7e9;
  background: #ffffff !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 56px;
  align-items: start;
}

.footer-brand {
  gap: 12px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(239, 62, 112, 0.18);
}

.footer-brand .brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.site-footer p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.footer-links a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--pink);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid #ece7e9;
  color: #8a8387;
  font-size: 13px;
  font-weight: 400;
  text-align: start;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-inline-start: auto;
}

.footer-legal a {
  color: inherit;
  transition: color 0.2s ease;
}

/* RTL */
html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .center-heading h2,
html[dir="rtl"] .customer-copy h2,
html[dir="rtl"] .trust-heading h2,
html[dir="rtl"] .cta-copy h2 {
  letter-spacing: -.8px;
}

html[dir="rtl"] .seller-chip {
  left: auto;
  right: -10px;
}

html[dir="rtl"] .order-card {
  right: auto;
  left: -4px;
}

html[dir="rtl"] .browser-address {
  margin-left: 0;
  margin-right: 10px;
}

html[dir="rtl"] .customer-message {
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .seller-message {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .message-note {
  right: auto;
  left: 25px;
  transform: rotate(2deg);
}

html[dir="rtl"] .summary-line {
  text-align: right;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-visual {
    transform: scale(.9);
  }

  .storefront-card {
    width: 500px;
  }

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

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

  .phone-one {
    left: 25px;
  }

  .phone-two {
    right: 25px;
  }

  .phone-scene {
    width: min(100%, 555px);
    height: 490px;
    min-height: 490px;
    transform: scale(0.92);
    transform-origin: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    height: 78px;
    background: #fff8fb;
  }

  .nav-wrap {
    position: relative;
    height: 78px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand-name {
    font-size: 24px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
  }

  .menu-button span:not(.sr-only) {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    z-index: 60;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    display: none;
    width: max-content;
    min-width: 168px;
    max-width: min(220px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: 0 12px 28px rgba(61, 40, 48, 0.12);
  }

  html[dir="rtl"] .main-nav {
    left: 0;
    right: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    text-align: start;
  }

  .nav-actions {
    display: flex;
    justify-self: end;
    gap: 10px;
  }

  .language-option {
    min-width: 42px;
    height: 32px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 75px;
  }

  .hero-grid,
  .problem-grid,
  .customer-grid,
  .trust-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .eyebrow {
    margin: 0 auto;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 20px;
    transform: scale(1);
  }

  .storefront-card {
    width: min(520px, 88vw);
    transform: translate(0, 35px);
  }

  .seller-chip {
    left: 1%;
  }

  .order-card {
    right: 0;
  }

  html[dir="rtl"] .seller-chip {
    right: 1%;
  }

  html[dir="rtl"] .order-card {
    left: 0;
  }

  .problem-grid,
  .customer-grid,
  .trust-grid {
    gap: 50px;
  }

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

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

  .benefit-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    column-gap: 30px;
    align-items: center;
  }

  .benefit-visual {
    grid-row: span 2;
    margin: 0;
  }

  .phone-scene {
    width: min(650px, 100%);
    margin: 0 auto;
  }

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

  .cta-card {
    padding: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 24px;
    padding-top: 0;
  }

  .footer-legal {
    grid-column: auto;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -2.8px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
    justify-content: flex-start;
    width: fit-content;
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 510px;
  }

  .storefront-card {
    width: 100%;
    border-radius: 22px;
  }

  .seller-chip {
    top: 3px;
    width: 225px;
    min-height: 72px;
    padding: 9px;
  }

  .seller-avatar {
    width: 45px;
    height: 45px;
  }

  .seller-chip-copy span {
    font-size: 10px;
  }

  .seller-tags {
    display: none;
  }

  .order-card {
    top: 42px;
    width: 190px;
    padding: 13px;
    border-radius: 18px;
  }

  .customer-box {
    margin: 10px 0 7px;
  }

  .order-line {
    font-size: 9px;
  }

  .category-grid {
    padding: 0 10px 12px;
    gap: 8px;
  }

  .product-visual {
    height: 95px;
  }

  .visual-caption {
    display: none;
  }

  .section-heading h2,
  .center-heading h2,
  .customer-copy h2,
  .trust-heading h2,
  .cta-copy h2 {
    font-size: 37px;
    letter-spacing: -2px;
  }

  .problem-copy > p {
    font-size: 16px;
  }

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

  .step-card {
    min-height: 245px;
  }

  .step-icon {
    margin: 32px 0 23px;
  }

  .benefit-card {
    display: block;
  }

  .benefit-visual {
    height: 205px;
    margin-bottom: 23px;
  }

  .phone-scene {
    width: 470px;
    height: 420px;
    min-height: 420px;
    transform: scale(0.76);
    transform-origin: top center;
  }

  .phone-one {
    left: 0;
  }

  .phone-two {
    right: 0;
  }

  .phone-cover {
    height: 130px;
  }

  .phone-items div {
    height: 80px;
  }

  .order-confirm-icon {
    width: 58px;
    height: 58px;
  }

  .phone-two .phone-content:not(.mkt-storefront) {
    padding-top: 63px;
  }

  .categories-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .categories-grid.store-views-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .categories-grid.store-views-grid .category-card {
    flex: 0 0 min(78vw, 240px);
    scroll-snap-align: start;
  }

  .category-art {
    height: 220px;
  }

  .trust-list article {
    min-height: 0;
  }

  .cta-card {
    padding: 35px 25px;
    border-radius: 25px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

/* Navbar spacing update */
.main-nav {
  width: 500px;
  justify-content: space-between;
  gap: 0;
  font-size: 16px;
  font-weight: 600;
}

.nav-wrap {
  grid-template-columns: 1fr 500px 1fr;
}

@media (max-width: 1120px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    width: auto;
  }
}


/* Final desktop navbar layout */
@media (min-width: 901px) {
  .nav-wrap {
    grid-template-columns: 1fr minmax(480px, 620px) 1fr !important;
    gap: 30px;
  }

  .main-nav {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: space-between !important;
    gap: 45px !important;
    font-size: 17px !important;
    font-weight: 600;
  }

  .main-nav a {
    white-space: nowrap;
  }
}


/* Makany desktop navbar — clean centered layout */
@media (min-width: 901px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto !important;
    gap: 40px !important;
  }

  .main-nav {
    display: flex !important;
    width: auto !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 44px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .nav-actions {
    justify-self: end;
  }
}


/* Smaller hero typography */
.hero-title,
.hero-copy h1,
.hero-content h1 {
  font-size: clamp(38px, 4vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em;

  font-weight: 700 !important;}

.hero-description,
.hero-copy > p,
.hero-content > p {
  max-width: 650px;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    font-size: 36px !important;
  
  font-weight: 700 !important;}

  .hero-description,
  .hero-copy > p,
  .hero-content > p {
    font-size: 15px !important;
  }
}


/* Reduce hero tagline further */
.hero-title,
.hero-copy h1,
.hero-content h1 {
  font-size: clamp(30px, 3.2vw, 42px) !important;
  line-height: 1.12 !important;

  font-weight: 700 !important;}

@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    font-size: 30px !important;
  
  font-weight: 700 !important;}
}


/* Hero headline — smaller with wider line */
.hero-title,
.hero-copy h1,
.hero-content h1 {
  width: 100% !important;
  max-width: 780px !important;
  font-size: clamp(28px, 2.7vw, 38px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;

  font-weight: 700 !important;}

@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    max-width: 100% !important;
    font-size: 28px !important;
  
  font-weight: 700 !important;}
}


/* Smaller hero tagline */
.hero-title,
.hero-copy h1,
.hero-content h1 {
  max-width: 850px !important;
  font-size: clamp(25px, 2.2vw, 32px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;

  font-weight: 700 !important;}

@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    font-size: 25px !important;
  
  font-weight: 700 !important;}
}

@media (min-width: 901px) {
  .hero-assurances {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 18px !important;
  }

  .hero-assurances > span {
    white-space: nowrap;
    font-size: 12px !important;
    gap: 6px !important;
  }

  .hero-assurances .check {
    width: 18px !important;
    height: 18px !important;
    font-size: 11px !important;
  }
}

@media (min-width: 901px) {
  .hero-assurances {
    flex-wrap: nowrap !important;
    gap: 14px !important;
  }

  .hero-assurances > span,
  .hero-assurances .assurance-item {
    white-space: nowrap;
    font-size: 10px !important;
    font-weight: 400 !important;
    gap: 5px !important;
  }

  .hero-assurances .check {
    width: 15px !important;
    height: 15px !important;
    font-size: 9px !important;
  }
}

.hero-description,
.hero-copy > p,
.hero-content > p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Final hero tagline */
@media (min-width: 901px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    max-width: none !important;
    width: max-content !important;
    font-size: 40px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    letter-spacing: -0.025em !important;
  
  font-weight: 700 !important;}
}

@media (max-width: 900px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    width: 100% !important;
    font-size: 32px !important;
    white-space: normal !important;
  
  font-weight: 700 !important;}
}

/* Keep hero headline contained */
.hero-title,
.hero-copy h1,
.hero-content h1 {
  width: auto !important;
  max-width: 680px !important;
  white-space: normal !important;
  font-size: 40px !important;
  line-height: 1.15 !important;

  font-weight: 700 !important;}

@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    max-width: 100% !important;
    font-size: 30px !important;
  
  font-weight: 700 !important;}
}

.hero-title,
.hero-copy h1,
.hero-content h1 {
  font-weight: 700 !important;
}

/* MAKANY_CLEAN_HERO_START */

.hero {
  min-height: calc(100vh - 88px) !important;
  padding: 90px 0 72px !important;
  display: flex !important;
  align-items: center !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr) !important;
  align-items: center !important;
  gap: clamp(56px, 7vw, 110px) !important;
}

.hero-copy,
.hero-content {
  max-width: 690px !important;
  position: relative !important;
  z-index: 3 !important;
}

.hero-title,
.hero-copy h1,
.hero-content h1 {
  width: auto !important;
  max-width: 690px !important;
  margin: 26px 0 26px !important;
  white-space: normal !important;
  font-size: clamp(52px, 4.5vw, 68px) !important;
  line-height: 0.99 !important;
  font-weight: 700 !important;
  letter-spacing: -0.055em !important;
}

.hero-description,
.hero-copy > p,
.hero-content > p {
  max-width: 590px !important;
  margin: 0 0 30px !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.hero-eyebrow,
.hero-badge {
  width: fit-content !important;
  padding: 7px 13px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 0 !important;
}

.hero-actions .button,
.hero-actions .btn,
.hero-actions a {
  min-height: 50px !important;
  padding: 0 24px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.hero-assurances {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 15px !important;
  margin-top: 24px !important;
}

.hero-assurances > span,
.hero-assurances .assurance-item {
  white-space: nowrap !important;
  font-size: 10px !important;
  line-height: 1.3 !important;
  font-weight: 400 !important;
  gap: 5px !important;
}

.hero-assurances .check {
  width: 15px !important;
  height: 15px !important;
  font-size: 9px !important;
}

.hero-visual {
  position: relative !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.phone-skeleton {
  position: absolute;
  left: -24px;
  bottom: 6px;
  z-index: 8;
  width: 180px;
  height: 365px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(52, 24, 35, 0.18);
  transform: rotate(-5deg);
}

.phone-skeleton-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #fff7fa 0%, #ffffff 34%, #fafafa 100%);
}

.phone-skeleton-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 64px;
  height: 17px;
  border-radius: 999px;
  background: #1f1d1e;
  transform: translateX(-50%);
}

.phone-skeleton-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 43px 14px 13px;
  border-bottom: 1px solid #eeeeee;
}

.phone-skeleton-logo {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #f33f70;
}

.phone-skeleton-heading {
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: #242122;
}

.phone-skeleton-subheading {
  width: 48px;
  height: 5px;
  margin-top: 6px;
  border-radius: 999px;
  background: #d7d2d4;
}

.phone-skeleton-body {
  padding: 14px 12px;
}

.phone-skeleton-search {
  height: 28px;
  margin-bottom: 13px;
  border-radius: 10px;
  background: #f0edef;
}

.phone-skeleton-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px;
  margin-bottom: 9px;
  border: 1px solid #efebed;
  border-radius: 13px;
  background: #ffffff;
}

.phone-skeleton-card-image {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f9d8e2;
}

.phone-skeleton-card:nth-child(3) .phone-skeleton-card-image {
  background: #d7e9fb;
}

.phone-skeleton-card:nth-child(4) .phone-skeleton-card-image {
  background: #eee2d4;
}

.phone-skeleton-line {
  height: 6px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: #2b2829;
}

.phone-skeleton-line.short {
  width: 58%;
  margin-bottom: 0;
  background: #d5d0d2;
}

.phone-skeleton-nav {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  display: flex;
  justify-content: space-around;
  padding: 10px 8px;
  border: 1px solid #eee9eb;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
}

.phone-skeleton-nav span {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #d7d2d4;
}

.phone-skeleton-nav span:first-child {
  background: #f33f70;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr) !important;
    gap: 44px !important;
  }

  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    font-size: clamp(46px, 5vw, 60px) !important;
  
  font-weight: 700 !important;}

  .phone-skeleton {
    left: -10px;
    width: 160px;
    height: 326px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto !important;
    padding: 68px 0 50px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 46px !important;
  }

  .hero-copy,
  .hero-content {
    max-width: 100% !important;
  }

  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    max-width: 700px !important;
    font-size: clamp(42px, 8vw, 58px) !important;
  
  font-weight: 700 !important;}

  .hero-visual {
    min-height: 570px !important;
  }

  .phone-skeleton {
    left: 4%;
    bottom: -16px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 52px !important;
  }

  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    margin: 20px 0 !important;
    font-size: 40px !important;
    line-height: 1.02 !important;
  
  font-weight: 700 !important;}

  .hero-description,
  .hero-copy > p,
  .hero-content > p {
    font-size: 15px !important;
  }

  .hero-assurances {
    flex-wrap: wrap !important;
  }

  .hero-visual {
    min-height: 480px !important;
  }

  .phone-skeleton {
    left: 0;
    width: 132px;
    height: 270px;
    border-radius: 27px;
  }

  .phone-skeleton-screen {
    border-radius: 21px;
  }
}

/* MAKANY_CLEAN_HERO_END */


/* Final clean hero typography */
.hero-title,
.hero-copy h1,
.hero-content h1 {
  max-width: 650px !important;
  font-size: clamp(52px, 4.1vw, 62px) !important;
  line-height: 1.02 !important;
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
}

.hero-description,
.hero-copy > p,
.hero-content > p {
  max-width: 570px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

@media (max-width: 1100px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    font-size: 52px !important;
  }
}

@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1,
  .hero-content h1 {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  .hero-description,
  .hero-copy > p,
  .hero-content > p {
    font-size: 15px !important;
  }
}
