:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line2: #eef2f7;
  --blue: #1f5ea8;
  --blue2: #2f76c8;
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.12);
  --shadow2: 0 16px 40px rgba(17, 24, 39, 0.08);
  --radius: 18px;
  --radius2: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

.page {
  min-height: 100%;
  background: linear-gradient(#ffffff 0 140px, var(--bg) 140px 100%);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: 26px;
  width: auto;
  display: block;
}

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

.nav__link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
}

.nav__link:hover {
  color: #111827;
}

.nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav .menu > li > a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
}

.nav .menu > li > a:hover {
  color: #111827;
}

.brand__text {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.header__mobile-nav {
  display: none;
}

.header__burger {
  list-style: none;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger::-webkit-details-marker {
  display: none;
}

.header__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #374151;
}

.header__mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: min(280px, calc(100vw - 48px));
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e7edf6;
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  z-index: 20;
}

.header__mobile-nav[open] .header__burger {
  border-color: var(--blue);
}

.nav--mobile .menu {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.nav--mobile .menu > li > a,
.nav--mobile .nav__link {
  display: block;
  padding: 10px 8px;
  border-radius: 10px;
}

.nav--mobile .menu > li > a:hover,
.nav--mobile .nav__link:hover {
  background: #f3f4f6;
}

.header__inner {
  position: relative;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
}

.phone__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #111827, #374151);
  position: relative;
}

.phone__icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(15deg);
}

.lang {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lang__flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1f5ea8 0 33%, #f5d33e 33% 66%, #da2f2f 66% 100%);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.12);
}

.hero {
  padding: 198px 0 18px;
  background: url("./images/hero-banner.png") no-repeat right 93%;
  background-size: auto;
  background-size: 1920px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.55);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.hero__copy h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero__copy p {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  max-width: 46ch;
}

.hero__art {
  position: relative;
  height: 120px;
}

.hero__badge {
  position: absolute;
  right: 20px;
  top: 76px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #3a86df, #1f5ea8);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(31, 94, 168, 0.35);
}

.steps {
  padding: 6px 0 18px;
}

.steps__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e7edf6;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
}

.step--active {
  background: linear-gradient(180deg, #3a86df, #1f5ea8);
  border-color: rgba(31, 94, 168, 0.15);
  color: #ffffff;
}

.step__num {
  font-weight: 800;
}

.step__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  margin-left: 2px;
}

.content {
  padding: 12px 0 46px;
}

/* ===========================
   WooCommerce (Cart/Checkout)
   - Styling doar din CSS (fără să stric designul Acasă)
   - Fișier: wp-content/themes/child-hello-elementor/style.css
   =========================== */

#bpNotices {
  margin: 10px auto 0;
}

#bpNotices:empty {
  display: none;
}

/* Woo classic notices */
.woocommerce-notices-wrapper,
#bpNotices {
  width: min(1160px, calc(100% - 40px));
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.wc-block-components-notice-banner {
  border-radius: 14px;
  border: 1px solid #e7edf6;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04);
  padding: 12px 14px;
  font-weight: 700;
}

.woocommerce-message {
  border-left: 6px solid var(--blue);
}

.woocommerce-message::before,
.woocommerce-message::after,
.wc-block-components-notice-banner__icon,
.wc-block-components-notice-banner svg,
#bpNotices .woocommerce-message svg {
  display: none !important;
  content: none !important;
}

.woocommerce-error {
  border-left: 6px solid #dc2626;
}

.woocommerce-info {
  border-left: 6px solid #1f5ea8;
}

/* Woo Blocks containers */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 46px;
}

.wp-block-woocommerce-cart .wc-block-cart,
.wp-block-woocommerce-checkout .wc-block-checkout {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e7edf6;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  padding: 18px;
}

/* Checkout layout spacing (Order summary / main form) */
.wp-block-woocommerce-checkout .wc-block-checkout__main,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
  padding: 0 !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__main {
  padding-right: 18px !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
  padding-left: 18px !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
  background: #ffffff !important;
  border: 1px solid #e7edf6 !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04) !important;
  padding: 16px !important;
  margin-bottom: 14px !important;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading {
  margin: 0 0 12px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #eef2f7 !important;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary__title,
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper__title {
  margin: 0 0 10px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #eef2f7 !important;
}

/* Remove “lipite” separators inside summary */
.wp-block-woocommerce-checkout .wc-block-components-order-summary__content hr,
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper hr,
.wp-block-woocommerce-checkout .wc-block-components-divider {
  opacity: 0.25 !important;
}

@media (max-width: 980px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__main {
    padding-right: 0 !important;
  }
  .wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
    padding-left: 0 !important;
  }
}

/* Cards within blocks */
.wc-block-components-card,
.wc-block-components-totals-wrapper,
.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
  border-radius: 16px !important;
  border: 1px solid #e7edf6 !important;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04) !important;
}

/* Buttons */
.wc-block-components-button,
.wp-block-woocommerce-cart .wc-block-components-button,
.wp-block-woocommerce-checkout .wc-block-components-button {
  border-radius: 12px !important;
  background: linear-gradient(180deg, #2f76c8, #1f5ea8) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  border: 0 !important;
}

.wc-block-components-button:hover {
  filter: brightness(1.02);
}

/* Inputs */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-quantity-selector input {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06) !important;
}

/* Product images in blocks */
.wc-block-cart-item__image img,
.wc-block-components-product-image img,
.wc-block-components-product-image {
  border-radius: 14px !important;
  background: #f3f6fb;
  border: 1px solid #e7edf6;
}

.cart {
  padding-top: 12px;
}

.cart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cart__back {
  text-decoration: none;
  color: #1f5ea8;
  font-weight: 800;
  font-size: 13px;
}

.cart__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 26px;
  align-items: start;
}

.cart__empty {
  padding: 18px;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  background: #ffffff;
  color: #6b7280;
  font-weight: 700;
}

.carttable {
  border: 1px solid #e7edf6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.carttable__head {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  font-weight: 900;
  color: #111827;
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
}

.carttable__right {
  width: 140px;
  text-align: right;
}

.carttable__body {
  padding: 0;
}

.cartrow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid #eef2f7;
}

.cartrow:last-child {
  border-bottom: 0;
}

.cartrow__left {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.cartrow__imgwrap {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  border: 1px solid #e7edf6;
  background: #f3f6fb;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cartrow__img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  transform: rotate(90deg);
}

.cartrow__name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cartrow__price {
  margin-top: 4px;
  font-weight: 900;
  font-size: 12px;
  color: #6b7280;
}

.cartrow__meta {
  margin-top: 8px;
  color: #6b7280;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cartrow__controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qtyctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.qtyctrl__btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #ffffff;
  color: #374151;
  font-weight: 900;
  cursor: pointer;
}

.qtyctrl__input {
  width: 60px;
  height: 34px;
  border: 0;
  outline: none;
  text-align: center;
  font-weight: 900;
  color: #111827;
}

.trash {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
}

.cartrow__total {
  width: 140px;
  text-align: right;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding-top: 4px;
}

.coupon {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #ffffff;
}

.coupon__label {
  font-weight: 900;
  font-size: 12px;
  color: #6b7280;
}

.coupon__row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.coupon__input {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
}

.coupon__btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.coupon__hint {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #15803d;
}

.coupon__hint--bad {
  color: #b91c1c;
}

.summaryline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  font-weight: 900;
}

.summaryline strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

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

.grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 26px;
  align-items: start;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.block {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e7edf6;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.upload {
  margin-top: 12px;
}

.upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.upload__box {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04);
}

.upload__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid rgba(31, 94, 168, 0.15);
  position: relative;
}

.upload__icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #1f5ea8;
  opacity: 0.9;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c.6 0 1 .4 1 1v8.6l2.3-2.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-4 4c-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4-4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0L11 12.6V4c0-.6.4-1 1-1zM5 19c0-.6.4-1 1-1h12c.6 0 1 .4 1 1s-.4 1-1 1H6c-.6 0-1-.4-1-1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c.6 0 1 .4 1 1v8.6l2.3-2.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-4 4c-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4-4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0L11 12.6V4c0-.6.4-1 1-1zM5 19c0-.6.4-1 1-1h12c.6 0 1 .4 1 1s-.4 1-1 1H6c-.6 0-1-.4-1-1z'/%3E%3C/svg%3E");
}

.upload__text {
  font-size: 13px;
  color: #374151;
  font-weight: 600;
  line-height: 1.25;
}

.upload__text strong {
  color: #111827;
}

.upload__hint {
  grid-column: 2 / -1;
  font-size: 12px;
  color: #6b7280;
  margin-top: -4px;
}

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

.ghost {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
  color: #374151;
  cursor: pointer;
}

.ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.block__title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.colors {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
}

.color {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
  position: relative;
}

.color--active {
  outline: 2px solid rgba(47, 118, 200, 0.35);
  box-shadow: 0 18px 34px rgba(31, 94, 168, 0.14);
}

.color__dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8), 0 10px 20px rgba(17, 24, 39, 0.12);
  position: relative;
}

.color__dot--rosu {
  background: linear-gradient(180deg, #ff4b4b, #c81e1e);
}

.color__dot--gri {
  background: linear-gradient(180deg, #e5e7eb, #6b7280);
}

.color__dot--negru {
  background: linear-gradient(180deg, #374151, #030712);
}

.color__dot--verde {
  background: linear-gradient(180deg, #2fd671, #15803d);
}

.color__dot--albastru {
  background: linear-gradient(180deg, #3a86df, #1f5ea8);
}

.color__dot--roz {
  background: linear-gradient(180deg, #ff4da0, #b5179e);
}

.color__dot--galben {
  background: linear-gradient(180deg, #ffd43b, #eab308);
}

.color__dot--mov {
  background: linear-gradient(180deg, #c084fc, #6d28d9);
}

.color[hidden] {
  display: none;
}

.model {
  position: relative;
  display: grid;
  grid-template-rows: 168px auto;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  cursor: pointer;
}

.model__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.model__img {
  border-radius: 12px;
  background: linear-gradient(180deg, #f5f7fb, #e6ebf3);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.model__photo {
  height: 170px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17, 24, 39, 0.12));
  pointer-events: none;
}

.model__label {
  font-weight: 600;
  color: #374151;
  font-size: 13px;
  padding-left: 28px;
  position: relative;
}

.model__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #ffffff;
}

.model__tick {
  position: absolute;
  left: 16px;
  bottom: 10px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #1f5ea8;
  display: none;
}

.model__tick::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.model--selected {
  outline: 2px solid rgba(47, 118, 200, 0.35);
}

.model--selected .model__label::before {
  border-color: rgba(31, 94, 168, 0.6);
  box-shadow: 0 12px 26px rgba(31, 94, 168, 0.2);
  opacity: 0;
}

.model--selected .model__tick {
  display: block;
}

.field {
  margin-top: 12px;
}

.input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.input:focus {
  border-color: rgba(47, 118, 200, 0.55);
  box-shadow: 0 18px 34px rgba(31, 94, 168, 0.16);
}

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

.row__right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.textcolor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.textcolor__label {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-right: 2px;
  user-select: none;
}

.textcolor__btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.textcolor__btn--active {
  outline: 2px solid rgba(47, 118, 200, 0.35);
}

.textcolor__swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.textcolor__swatch--alb {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.textcolor__swatch--negru {
  background: #111827;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
}

.pill--active {
  background: linear-gradient(180deg, #3a86df, #1f5ea8);
  border-color: rgba(31, 94, 168, 0.15);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(31, 94, 168, 0.24);
}

.pill__icon {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
}

.pill__icon--lines::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 10px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
  user-select: none;
}

.check input {
  width: 16px;
  height: 16px;
}

.hint {
  margin-top: 10px;
  color: #6b7280;
  font-size: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-weight: 700;
  color: #111827;
  margin-left: 6px;
}

.pay {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.pay--stack {
  margin-top: 12px;
  flex-direction: column;
}

.pay__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: none;
}

.pay__btn--active {
  border-color: rgba(31, 94, 168, 0.2);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.pay__icon {
  width: 18px;
  height: 14px;
  background: #6b7280;
  border-radius: 0;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Cpath d='M2 1.8C2 0.8 2.8 0 3.8 0h16.4C21.2 0 22 0.8 22 1.8v14.4c0 1-0.8 1.8-1.8 1.8H3.8C2.8 18 2 17.2 2 16.2V1.8zm2.3 2.1v2h15.4v-2H4.3zm0 5.2v6.2h15.4V9.1H4.3zm2.1 1.8h4.1v1.6H6.4v-1.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Cpath d='M2 1.8C2 0.8 2.8 0 3.8 0h16.4C21.2 0 22 0.8 22 1.8v14.4c0 1-0.8 1.8-1.8 1.8H3.8C2.8 18 2 17.2 2 16.2V1.8zm2.3 2.1v2h15.4v-2H4.3zm0 5.2v6.2h15.4V9.1H4.3zm2.1 1.8h4.1v1.6H6.4v-1.6z'/%3E%3C/svg%3E");
}

.pay__icon--bank {
  background: #6b7280;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Cpath d='M2 6.2c0-1 0.8-1.8 1.8-1.8h16.4c1 0 1.8 0.8 1.8 1.8v8c0 1-0.8 1.8-1.8 1.8H3.8C2.8 16 2 15.2 2 14.2v-8zm2.3.6v1.8h15.4V6.8H4.3zm0 4v3H9v-3H4.3zM10.7 12.1h6.7v1.4h-6.7v-1.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Cpath d='M2 6.2c0-1 0.8-1.8 1.8-1.8h16.4c1 0 1.8 0.8 1.8 1.8v8c0 1-0.8 1.8-1.8 1.8H3.8C2.8 16 2 15.2 2 14.2v-8zm2.3.6v1.8h15.4V6.8H4.3zm0 4v3H9v-3H4.3zM10.7 12.1h6.7v1.4h-6.7v-1.4z'/%3E%3C/svg%3E");
}

.right .card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e7edf6;
  box-shadow: var(--shadow2);
  position: sticky;
  top: 86px;
}

.card__title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}

.preview {
  background: #f3f6fb;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 12px;
}

.preview__pen {
  height: 72px;
  border-radius: 12px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid #e7edf6;
  cursor: zoom-in;
}

.preview__pen::before {
  content: none;
}

.preview__pen::after {
  content: none;
}

.preview__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  height: 330px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}

.preview__logo {
  position: absolute;
  left: 50%;
  transform: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.preview__logo--mijloc {
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(3px);
}

.modal__panel {
  position: relative;
  margin: 6vh auto;
  width: min(720px, calc(100% - 28px));
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 40px 120px rgba(17, 24, 39, 0.35);
  padding: 18px;
}

.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #374151;
}

.modal__preview {
  padding: 18px;
  border-radius: 14px;
  background: #f3f6fb;
  border: 1px solid #e7edf6;
}

.modal__pen {
  position: relative;
  height: 220px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e7edf6;
  overflow: hidden;
}

.modal__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  height: 620px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}

.modal__logo {
  position: absolute;
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: none;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.modal__logo--mijloc {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 62%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.22);
}

.modal__text--two {
  white-space: normal;
  text-overflow: clip;
  max-width: 58%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.modal__text--alb {
  color: rgba(255, 255, 255, 0.95);
}

.modal__text--negru {
  color: rgba(17, 24, 39, 0.92);
  text-shadow: 0 2px 3px rgba(255, 255, 255, 0.25);
}

.preview__text {
  position: absolute;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0;
}

.preview__text--onpen {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  background: none;
  border-radius: 0;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  max-width: 62%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.05;
}

.preview__text--alb {
  color: rgba(255, 255, 255, 0.95);
}

.preview__text--negru {
  color: rgba(17, 24, 39, 0.92);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.preview__text--two {
  text-align: center;
  line-height: 1.15;
}

.preview__text--two br {
  content: "";
}

.preview__text--two.preview__text--onpen {
  white-space: normal;
  text-overflow: clip;
  max-width: 58%;
  transform: translate(-50%, -50%);
}

.product {
  margin-top: 12px;
}

.product__name {
  font-weight: 700;
  color: #111827;
  font-size: 14px;
}

.qty {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.qty__item {
  padding: 10px 8px 9px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.05;
  color: #111827;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 4px;
}

.qty__n {
  font-weight: 900;
  font-size: 13px;
}

.qty__sub {
  font-weight: 700;
  font-size: 10px;
  color: #6b7280;
}

.qty__item--active {
  background: #eff6ff;
  border-color: rgba(31, 94, 168, 0.25);
  outline: 2px solid rgba(47, 118, 200, 0.35);
  box-shadow: 0 18px 34px rgba(31, 94, 168, 0.12);
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
}

.line__value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 600;
}

.line__value strong {
  font-size: 14px;
}

.line__eq {
  display: inline-block;
  padding: 0 8px;
  color: #6b7280;
  font-weight: 700;
}

.meta {
  display: grid;
  gap: 8px;
  font-size: 13px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eef2f7;
}

.meta__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.meta__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta__tag {
  margin-left: auto;
  font-size: 11px;
  color: #9ca3af;
}

.meta__info {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-weight: 900;
  font-size: 11px;
  background: #ffffff;
}

.meta__nov {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f5ea8;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.meta__cloud {
  width: 16px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.meta__cloud::before,
.meta__cloud::after {
  content: "";
  position: absolute;
  background: #1f5ea8;
  opacity: 0.9;
  border-radius: 999px;
}

.meta__cloud::before {
  width: 16px;
  height: 7px;
  left: 0;
  bottom: 0;
}

.meta__cloud::after {
  width: 8px;
  height: 8px;
  left: 5px;
  bottom: 3px;
}

.total {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 800;
}

.total strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.total--big {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
  font-size: 16px;
}

.total--big strong {
  font-size: 30px;
  letter-spacing: -0.02em;
}

.total--center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.total--center strong {
  font-size: 34px;
  line-height: 1;
}

.mini-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  color: #9ca3af;
}

.mini-icons__item {
  width: 18px;
  height: 18px;
  background: #9ca3af;
  opacity: 0.9;
  border-radius: 4px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.mini-icons__item--eye {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c5.5 0 9.9 3.5 11 7-1.1 3.5-5.5 7-11 7S2.1 15.5 1 12c1.1-3.5 5.5-7 11-7zm0 3.2A3.8 3.8 0 1 0 12 16a3.8 3.8 0 0 0 0-7.6zm0 2a1.8 1.8 0 1 1 0 3.6 1.8 1.8 0 0 1 0-3.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c5.5 0 9.9 3.5 11 7-1.1 3.5-5.5 7-11 7S2.1 15.5 1 12c1.1-3.5 5.5-7 11-7zm0 3.2A3.8 3.8 0 1 0 12 16a3.8 3.8 0 0 0 0-7.6zm0 2a1.8 1.8 0 1 1 0 3.6 1.8 1.8 0 0 1 0-3.6z'/%3E%3C/svg%3E");
}

.mini-icons__item--card {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Cpath d='M2 1.8C2 0.8 2.8 0 3.8 0h16.4C21.2 0 22 0.8 22 1.8v14.4c0 1-0.8 1.8-1.8 1.8H3.8C2.8 18 2 17.2 2 16.2V1.8zm2.3 2.1v2h15.4v-2H4.3zm0 5.2v6.2h15.4V9.1H4.3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Cpath d='M2 1.8C2 0.8 2.8 0 3.8 0h16.4C21.2 0 22 0.8 22 1.8v14.4c0 1-0.8 1.8-1.8 1.8H3.8C2.8 18 2 17.2 2 16.2V1.8zm2.3 2.1v2h15.4v-2H4.3zm0 5.2v6.2h15.4V9.1H4.3z'/%3E%3C/svg%3E");
}

.mini-icons__item--refresh {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.7 6.3A8 8 0 1 0 20 12h-2a6 6 0 1 1-1.8-4.2L14 10h8V2l-4.3 4.3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.7 6.3A8 8 0 1 0 20 12h-2a6 6 0 1 1-1.8-4.2L14 10h8V2l-4.3 4.3z'/%3E%3C/svg%3E");
}

.cta {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #2f76c8, #1f5ea8);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 14px 22px rgba(31, 94, 168, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta:active {
  transform: translateY(1px);
}

.cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
}

.cards__img {
  max-width: 190px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

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

  .hero__art {
    height: 96px;
  }

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

  .right .card {
    position: static;
  }
}

@media (max-width: 560px) {
  .nav--desktop {
    display: none !important;
  }

  .header__mobile-nav {
    display: block;
    position: relative;
    order: 1;
  }

  .header__inner {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .header__right {
    order: 2;
    gap: 8px;
  }

  .phone {
    display: none;
  }

  .hero__copy h1 {
    font-size: 34px;
  }

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

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