/*
  Soltar Ca. storefront theme
*/

:root {
  --bg: #030708;
  --bg-2: #071011;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #b7bec9;
  --dim: #7e8794;
  --yellow: #ffd400;
  --orange: #ff7a00;
  --pink: #ff2f8b;
  --violet: #8b38ff;
  --blue: #00a3ff;
  --green: #1ee982;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --gradient: linear-gradient(110deg, var(--yellow), var(--orange), var(--pink), var(--violet), var(--blue));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 47, 139, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(0, 163, 255, 0.14), transparent 32rem),
    radial-gradient(circle at 54% 64%, rgba(30, 233, 130, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 5px;
  background: var(--gradient);
  z-index: 10000;
}

body,
ul,
li,
p,
a,
label,
input,
textarea,
select,
button,
div {
  font-family: "Roboto", Arial, sans-serif;
}

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

img,
svg {
  max-width: 100%;
}

.site-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

.top-strip .site-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.top-strip span,
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 1.1rem;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 7, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.main-nav .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(139, 56, 255, 0.28);
}

.brand-mark span {
  width: 24px;
  height: 24px;
  border: 6px solid #071011;
  border-left-color: transparent;
  border-radius: 7px;
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 4.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #f2f5f8;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #f7fbff;
}

.nav-actions a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: 180ms ease;
}

.nav-actions a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-dot {
  position: relative;
}

.cart-dot::after {
  content: "2";
  position: absolute;
  right: -2px;
  top: -3px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
}

.hero-card,
.glass-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 560px;
  margin-top: 2rem;
  padding: clamp(2rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 47, 139, 0.22), transparent 18rem),
    radial-gradient(circle at 70% 73%, rgba(30, 233, 130, 0.17), transparent 18rem),
    linear-gradient(120deg, rgba(2, 5, 6, 0.9), rgba(7, 16, 17, 0.5));
  z-index: -1;
}

.hero-title,
.section-title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(3.1rem, 7vw, 5.9rem);
  line-height: 0.96;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-align: center;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.section-copy {
  color: var(--muted);
  line-height: 1.58;
}

.hero-copy {
  max-width: 520px;
  margin: 1.25rem 0 1.9rem;
  font-size: 1.12rem;
}

.section-copy {
  max-width: 560px;
  margin: 0.8rem auto 0;
  text-align: center;
  font-size: 1.05rem;
}

.btn-gradient,
.btn-outline-rainbow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(255, 47, 139, 0.22);
}

.btn-gradient {
  background: var(--gradient);
}

.btn-outline-rainbow {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--gradient) border-box;
  border: 2px solid transparent;
  box-shadow: none;
}

.hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
}

.printer-stage {
  width: min(520px, 100%);
  aspect-ratio: 1.04;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 8rem),
    radial-gradient(circle at 38% 30%, rgba(255, 47, 139, 0.42), transparent 8.5rem),
    radial-gradient(circle at 70% 54%, rgba(0, 163, 255, 0.3), transparent 9rem),
    radial-gradient(circle at 48% 78%, rgba(255, 122, 0, 0.26), transparent 8rem);
  position: relative;
}

.printer {
  width: 74%;
  aspect-ratio: 1.05;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1), transparent 22%),
    linear-gradient(145deg, #12181c, #020405);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.025), 0 28px 60px rgba(0,0,0,0.55);
  position: relative;
}

.printer::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 18%;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 28px rgba(0, 163, 255, 0.55);
}

.printer::after {
  content: "";
  position: absolute;
  left: 28%;
  bottom: 16%;
  width: 44%;
  height: 44%;
  border-radius: 18px 18px 30px 30px;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(120deg, var(--yellow), var(--pink), var(--blue));
  clip-path: polygon(15% 18%, 72% 0, 86% 70%, 50% 100%, 5% 76%);
  filter: drop-shadow(0 18px 24px rgba(255, 47, 139, 0.28));
}

.floating-chip {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(3, 7, 8, 0.78);
  border-radius: 16px;
  padding: 0.75rem 0.95rem;
  color: var(--muted);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.floating-chip strong {
  display: block;
  color: #fff;
}

.chip-top {
  top: 9%;
  right: 2%;
}

.chip-bottom {
  bottom: 8%;
  left: 0;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dots span:first-child {
  background: #fff;
}

.section {
  padding: clamp(3.4rem, 6vw, 5.6rem) 0;
}

.service-grid,
.product-grid,
.benefit-grid,
.process-grid {
  display: grid;
  gap: 2rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.service-card {
  text-align: center;
}

.circle-media {
  width: min(270px, 72vw);
  aspect-ratio: 1;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient);
}

.circle-media-inner {
  height: 100%;
  border-radius: inherit;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 45% 35%, rgba(255,255,255,0.12), transparent 7rem),
    #080d0f;
}

.circle-media i {
  font-size: clamp(4.8rem, 9vw, 7rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h3,
.product-card h3,
.benefit h3,
.process-step h3 {
  color: #fff;
  font-weight: 800;
  margin: 0 0 0.55rem;
}

.service-card p,
.product-card p,
.benefit p,
.process-step p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.featured-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.product-card {
  min-height: 100%;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.product-visual {
  height: 245px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.15), transparent 5rem),
    linear-gradient(150deg, #1a2026, #070a0c 70%);
  overflow: hidden;
  position: relative;
}

.product-visual i {
  font-size: 7rem;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.45));
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 16%;
  height: 15px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.48), transparent 70%);
}

.product-meta,
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rating-row {
  color: var(--yellow);
  font-size: 0.88rem;
  margin: 0.35rem 0 0.8rem;
}

.price {
  color: #a64cff;
  font-weight: 900;
}

.product-card .btn-gradient {
  width: 100%;
  margin-top: 1.1rem;
  min-height: 44px;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
  padding: 1.6rem;
}

.benefit {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-right: 1px solid var(--border);
}

.benefit:last-child {
  border-right: 0;
}

.benefit i {
  font-size: 2.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefit h3 {
  font-size: 1rem;
}

.benefit p {
  font-size: 0.9rem;
}

.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.page-hero .glass-panel {
  padding: clamp(2rem, 5vw, 4rem);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 900;
}

.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
  margin: 1rem 0 0;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.process-step,
.form-panel,
.detail-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  padding: 1.5rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 2rem;
}

.filter-panel {
  align-self: start;
  position: sticky;
  top: 110px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  background: var(--panel);
}

.filter-panel h2 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 1rem;
}

.filter-panel a {
  display: block;
  color: var(--muted);
  padding: 0.55rem 0;
}

.filter-panel a:hover {
  color: #fff;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catalog-toolbar select,
.form-control-dark {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
}

.form-control-dark::placeholder {
  color: var(--dim);
}

.upload-box {
  border: 1px dashed rgba(255,255,255,0.24);
  border-radius: 16px;
  padding: 1.4rem;
  background: rgba(255,255,255,0.04);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 2rem;
  align-items: start;
}

.detail-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 47, 139, 0.24), transparent 12rem),
    radial-gradient(circle at 62% 66%, rgba(0, 163, 255, 0.2), transparent 13rem),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
}

.detail-visual i {
  font-size: clamp(8rem, 18vw, 15rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.45));
}

.detail-panel h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.option-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #fff;
  padding: 0.5rem 0.9rem;
  background: rgba(255,255,255,0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 2rem;
}

.form-panel label {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.form-panel .field {
  margin-bottom: 1rem;
}

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

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding: 3.5rem 0 1.4rem;
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-links li {
  margin-bottom: 0.45rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
}

.subscribe {
  display: grid;
  gap: 0.9rem;
}

.copyright {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--dim);
  text-align: center;
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  .site-shell {
    width: min(100% - 32px, 760px);
  }

  .main-nav .site-shell {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .nav-actions {
    position: absolute;
    top: 1.55rem;
    right: 0;
  }

  .hero-card,
  .detail-layout,
  .contact-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .filter-panel {
    position: static;
  }

  .service-grid,
  .product-grid,
  .benefit-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .top-strip .site-shell {
    flex-direction: column;
    gap: 0.35rem;
  }

  .brand {
    font-size: 1.45rem;
  }

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

  .nav-actions {
    display: none;
  }

  .hero-card {
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 18px;
  }

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

  .floating-chip {
    display: none;
  }

  .service-grid,
  .product-grid,
  .benefit-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }

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

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}
