/* [project]/src/themes/test-website/theme.scss.css [app-client] (css) */
:root {
  --t-primary: #4759e4;
  --t-primary-dark: #3343c4;
  --t-dark: #14182a;
  --t-light: #f6f7fc;
  --t-muted: #69728a;
  --t-radius: 14px;
  --t-container: 1140px;
}

.container {
  max-width: var(--t-container);
  margin: 0 auto;
  padding: 0 22px;
}

.btn {
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 99px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
}

.btn.btn-primary {
  background: var(--t-primary);
  color: #fff;
}

.btn.btn-primary:hover {
  background: var(--t-primary-dark);
}

.btn.btn-ghost {
  color: inherit;
  background: none;
  border-color: currentColor;
}

.btn.btn-ghost:hover {
  background: #ffffff1f;
}

.section-title {
  margin: 0 0 24px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.site-header {
  z-index: 500;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffffeb;
  border-bottom: 1px solid #eceef5;
  position: sticky;
  top: 0;
}

.header-inner {
  align-items: center;
  gap: 26px;
  min-height: 70px;
  display: flex;
}

.header-logo {
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.header-logo-img img {
  width: auto;
  height: 38px;
}

.header-nav {
  flex: 1;
}

.header-menu {
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header-menu a {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.header-menu a:hover {
  background: var(--t-light);
  color: var(--t-primary);
}

.header-side {
  align-items: center;
  gap: 14px;
  display: flex;
}

.header-socials {
  gap: 4px;
  display: flex;
}

.header-social {
  color: var(--t-muted);
  border-radius: 8px;
  padding: 8px;
  display: inline-flex;
}

.header-social:hover {
  color: var(--t-primary);
  background: var(--t-light);
}

.header-cta {
  padding: 10px 20px;
}

.lang-switcher {
  position: relative;
}

.lang-current {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 1px solid #e2e6ee;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.lang-current:hover {
  border-color: var(--t-primary);
}

.lang-menu {
  z-index: 700;
  background: #fff;
  border: 1px solid #e2e6ee;
  border-radius: 10px;
  min-width: 110px;
  margin: 0;
  padding: 6px;
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  box-shadow: 0 10px 34px #14182a29;
}

.lang-menu button {
  width: 100%;
  font: inherit;
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  display: flex;
}

.lang-menu button:hover {
  background: var(--t-light);
}

.lang-menu button.is-active {
  color: var(--t-primary);
  font-weight: 700;
}

.block-form {
  padding: 90px 0;
}

.cms-form {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

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

.form-row.form-row-single {
  grid-template-columns: 1fr;
}

.form-field {
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.form-field input, .form-field textarea, .form-field select {
  font: inherit;
  border: 1px solid #dde1ec;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 400;
}

.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--t-primary);
  outline-offset: -1px;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
}

.form-radios {
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 400;
  display: flex;
}

.form-radio {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.form-success {
  color: #157347;
  background: #e2f6ea;
  border-radius: 10px;
  padding: 18px;
}

.form-error {
  color: #c33;
}

.cms-form .btn {
  border: 0;
  align-self: flex-start;
}

.album-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  display: grid;
}

.album-cell {
  cursor: zoom-in;
  background: var(--t-light);
  aspect-ratio: 1;
  border: 0;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.album-cell img, .album-cell video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .2s;
}

.album-cell:hover img {
  transform: scale(1.04);
}

.album-sentinel {
  text-align: center;
  color: var(--t-muted);
  padding: 30px;
}

.album-more {
  color: var(--t-primary);
  margin-top: 22px;
}

.block-album {
  padding: 90px 0;
}

.albums-cards {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
  display: grid;
}

.album-card {
  border-radius: var(--t-radius);
  aspect-ratio: 4 / 3;
  background: var(--t-dark);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.album-card img {
  object-fit: cover;
  opacity: .85;
  width: 100%;
  height: 100%;
  transition: all .2s;
}

.album-card:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.album-card-title {
  color: #fff;
  text-shadow: 0 2px 10px #0009;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  bottom: 14px;
  left: 16px;
}

.album-breadcrumb {
  margin-bottom: 14px;
  font-size: 14px;
}

.album-breadcrumb a {
  color: var(--t-muted);
  text-decoration: none;
}

.album-breadcrumb a:hover {
  color: var(--t-primary);
}

.album-lightbox {
  z-index: 5000;
  cursor: zoom-out;
  background: #080a12f0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.album-lightbox img, .album-lightbox video {
  max-width: 92vw;
  max-height: 92vh;
}

.album-lb-prev, .album-lb-next {
  color: #fff;
  cursor: pointer;
  background: #ffffff1f;
  border: 0;
  border-radius: 99px;
  width: 48px;
  height: 48px;
  font-size: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.album-lb-prev {
  left: 18px;
}

.album-lb-next {
  right: 18px;
}

.site-footer {
  background: var(--t-dark);
  color: #c7cce0;
  padding: 70px 0 30px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 46px;
  display: grid;
}

.footer-logo {
  color: #fff;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.footer-intro {
  max-width: 360px;
  font-size: 15px;
}

.footer-socials {
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.footer-social {
  color: #dfe3f2;
  background: #ffffff12;
  border-radius: 9px;
  padding: 9px;
  display: inline-flex;
}

.footer-social:hover {
  background: var(--t-primary);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 15px;
}

.footer-col ul {
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-col a {
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-copy {
  color: #8b93ab;
  border-top: 1px solid #ffffff1a;
  margin-top: 50px;
  padding-top: 22px;
  font-size: 13px;
}

.post-article {
  max-width: 820px;
  padding: 70px 22px;
}

.post-cover img {
  border-radius: var(--t-radius);
  width: 100%;
  margin-bottom: 30px;
}

.post-article h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 5vw, 46px);
}

.post-article time {
  color: var(--t-muted);
}

.post-body {
  color: #2d3344;
  margin-top: 26px;
  font-size: 17px;
}

.post-fields {
  background: var(--t-light);
  border-radius: var(--t-radius);
  margin-top: 30px;
  padding: 20px 26px;
}

.post-fields dt {
  text-transform: uppercase;
  color: var(--t-muted);
  font-size: 13px;
  font-weight: 700;
}

.post-fields dd {
  margin: 2px 0 14px;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-nav {
    display: none;
  }
}

/* [project]/src/themes/test-website/blocks/Contact/contact.scss.css [app-client] (css) */
.block-contact {
  padding: 90px 0;
}

.contact-grid {
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  display: grid;
}

.contact-intro {
  color: var(--t-muted);
}

.contact-intro .section-title {
  color: var(--t-dark);
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* [project]/src/themes/test-website/blocks/Hero/hero.scss.css [app-client] (css) */
.block-hero {
  color: #fff;
  background: var(--t-dark);
  align-items: center;
  min-height: 88vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.block-hero .cms-media-edit {
  position: absolute;
  inset: 0;
}

.hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(110deg, #0a0d1cd1 25%, #0a0d1c59);
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 5;
  max-width: 820px;
  margin-left: max((100vw - var(--t-container))/2,0px);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.hero-title {
  letter-spacing: -.02em;
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
}

.hero-description {
  color: #d6dbeb;
  max-width: 560px;
  margin: 0 0 32px;
  font-size: clamp(16px, 2vw, 21px);
}

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

/* [project]/src/themes/test-website/blocks/ImageText/imagetext.scss.css [app-client] (css) */
.block-imagetext {
  padding: 90px 0;
}

.block-imagetext .cms-select-attr {
  position: absolute;
  top: -34px;
  left: 0;
}

.block-imagetext.side-right .imagetext-media {
  order: 2;
}

.imagetext-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  display: grid;
  position: relative;
}

.imagetext-img img {
  border-radius: var(--t-radius);
  width: 100%;
  height: auto;
  box-shadow: 0 18px 50px #171e3c24;
}

.imagetext-text {
  color: var(--t-muted);
  font-size: 17px;
}

@media (max-width: 880px) {
  .imagetext-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .block-imagetext.side-right .imagetext-media {
    order: 0;
  }
}

/* [project]/src/themes/test-website/blocks/News/news.scss.css [app-client] (css) */
.block-news {
  background: var(--t-light);
  padding: 90px 0;
}

.news-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  display: grid;
}

.news-card {
  border-radius: var(--t-radius);
  background: #fff;
  flex-direction: column;
  text-decoration: none;
  transition: transform .15s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 6px 28px #171e3c0f;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card time {
  color: var(--t-muted);
  font-size: 13px;
}

.news-card h3 {
  margin: 6px 0 8px;
  font-size: 19px;
}

.news-card p {
  color: var(--t-muted);
  margin: 0;
  font-size: 14px;
}

.news-cover img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.news-card-body {
  padding: 20px 22px 24px;
}

/* [project]/src/themes/test-website/blocks/Timeline/timeline.scss.css [app-client] (css) */
.block-timeline {
  background: var(--t-light);
  padding: 90px 0;
  overflow: hidden;
}

.tl-wrap {
  position: relative;
}

.tl-path {
  width: 100%;
  height: 100%;
  color: var(--t-primary);
  z-index: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.tl-items {
  z-index: 1;
  flex-direction: column;
  gap: 70px;
  padding: 30px 0;
  display: flex;
  position: relative;
}

.tl-item {
  align-items: center;
  gap: 26px;
  display: grid;
  position: relative;
}

.tl-item .cms-select-attr {
  z-index: 66;
  margin: 0;
  position: absolute;
  top: -30px;
  left: 0;
}

.tl-item.tl-year {
  grid-template-columns: 18px 1fr;
}

.tl-item.tl-image {
  grid-template-columns: 1fr 18px;
}

.tl-item.tl-image .tl-card {
  justify-self: end;
  max-width: 520px;
}

.tl-item.tl-split {
  grid-template-columns: 1fr 18px 1fr;
}

.tl-dot {
  background: var(--t-primary);
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 2px var(--t-primary);
  border: 4px solid #fff;
  border-radius: 99px;
  flex-shrink: 0;
  justify-self: center;
}

.tl-card {
  border-radius: var(--t-radius);
  background: #fff;
  padding: 26px 30px;
  box-shadow: 0 6px 28px #171e3c14;
}

.tl-year {
  color: var(--t-primary);
  letter-spacing: .08em;
  font-size: 14px;
  font-weight: 800;
}

.tl-title {
  margin: 6px 0 8px;
}

.tl-img img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  max-height: 320px;
}

@media (max-width: 880px) {
  .tl-item.tl-split {
    grid-template-columns: 1fr;
  }

  .tl-item.tl-split .tl-dot {
    display: none;
  }
}

/* [project]/src/themes/test-website/blocks/Usp/usp.scss.css [app-client] (css) */
.block-usp {
  background: var(--t-light);
  padding: 90px 0;
}

.usp-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  display: grid;
}

.usp-item {
  border-radius: var(--t-radius);
  background: #fff;
  padding: 30px 26px;
  box-shadow: 0 6px 28px #171e3c0f;
}

.usp-icon {
  color: var(--t-primary);
  font-size: 34px !important;
}

.usp-icon.cms-icon {
  width: 34px;
  height: 34px;
}

.usp-text {
  color: var(--t-muted);
  margin: 14px 0 0;
}

/* [project]/src/modules/webshops/src/module.scss.css [app-client] (css) */
.webshops-block, .webshops-mini-cart, .webshops-admin, .webshops-page {
  --webshops-accent: #7f2c84;
  --webshops-accent-strong: #5f1764;
  --webshops-accent-soft: #f5edf6;
  --webshops-ink: #241f25;
  --webshops-muted: #6c636d;
  --webshops-border: #ded7df;
  --webshops-surface: #fff;
  --webshops-surface-subtle: #faf8fa;
  --webshops-success: #16734a;
  --webshops-danger: #b42318;
  --webshops-warning: #946200;
  --webshops-radius: .75rem;
  --webshops-shadow: 0 .75rem 2.25rem #241f251a;
  box-sizing: border-box;
  color: var(--webshops-ink);
}

.webshops-block *, .webshops-mini-cart *, .webshops-admin *, .webshops-page * {
  box-sizing: border-box;
}

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

.webshops-block {
  width: min(100%, 76rem);
  margin-inline: auto;
  padding: clamp(2.25rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
}

.webshops-block__header {
  max-width: 46rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.webshops-block__header h2, .webshops-featured-product h2 {
  letter-spacing: -.03em;
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
}

.webshops-block__header p, .webshops-featured-product__content > p {
  color: var(--webshops-muted);
  margin: .75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.webshops-card-grid {
  grid-template-columns: repeat(var(--webshops-grid-columns, 3), minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  display: grid;
}

.webshops-product-card {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface);
  flex-direction: column;
  min-width: 0;
  transition: border-color .16s, box-shadow .16s, transform .16s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 .25rem 1rem #241f250d;
}

.webshops-product-card:hover {
  border-color: color-mix(in srgb, var(--webshops-accent) 45%, var(--webshops-border));
  box-shadow: var(--webshops-shadow);
  transform: translateY(-2px);
}

.webshops-product-card__image-link {
  color: inherit;
}

.webshops-product-card__visual, .webshops-category-card__visual, .webshops-featured-product__visual {
  background: var(--webshops-surface-subtle);
  display: block;
  position: relative;
  overflow: hidden;
}

.webshops-product-card__visual {
  aspect-ratio: 4 / 3;
}

.webshops-product-card__visual img, .webshops-category-card__visual img, .webshops-featured-product__visual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .25s;
}

.webshops-product-card:hover .webshops-product-card__visual img, .webshops-category-card:hover .webshops-category-card__visual img {
  transform: scale(1.025);
}

.webshops-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  color: color-mix(in srgb, var(--webshops-muted) 65%, transparent);
  background: linear-gradient(135deg, transparent 0 46%, #7f2c840f 46% 54%, transparent 54%),var(--webshops-surface-subtle);
  place-items: center;
  display: grid;
}

.webshops-image-placeholder .material-symbols-outlined {
  font-size: 2.5rem;
}

.webshops-product-card__badge {
  color: #fff;
  background: var(--webshops-accent-strong);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .3rem .55rem;
  font-size: .72rem;
  font-weight: 750;
  position: absolute;
  top: .75rem;
  left: .75rem;
}

.webshops-product-card__content {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 1.15rem;
  display: flex;
}

.webshops-product-card__content h3 {
  margin: .15rem 0 .5rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.webshops-product-card__content h3 a, .webshops-category-card, .webshops-mini-cart__item-content a {
  color: inherit;
  text-decoration: none;
}

.webshops-product-card__content h3 a:hover, .webshops-category-card:hover strong, .webshops-mini-cart__item-content a:hover {
  color: var(--webshops-accent-strong);
  text-underline-offset: .15em;
  text-decoration: underline;
}

.webshops-product-card__content > p:not(.webshops-product-price, .webshops-stock, .webshops-product-card__meta) {
  color: var(--webshops-muted);
  margin: 0 0 .8rem;
  font-size: .9rem;
  line-height: 1.55;
}

.webshops-product-card__meta {
  color: var(--webshops-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0;
  font-size: .72rem;
}

.webshops-product-price {
  color: var(--webshops-accent-strong);
  align-items: baseline;
  gap: .5rem;
  margin: auto 0 .55rem;
  font-size: 1.08rem;
  font-weight: 750;
  display: flex;
}

.webshops-product-price del {
  color: var(--webshops-muted);
  font-size: .84em;
  font-weight: 450;
}

.webshops-stock {
  color: var(--webshops-success);
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 650;
}

.webshops-stock--out {
  color: var(--webshops-danger);
}

.webshops-product-actions {
  flex-wrap: wrap;
  gap: .55rem;
  width: 100%;
  margin-top: auto;
  display: flex;
}

.webshops-button, .webshops-admin__button {
  min-height: 2.65rem;
  font: inherit;
  text-align: center;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  padding: .65rem .95rem;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: background .14s, border-color .14s, color .14s, box-shadow .14s;
  display: inline-flex;
}

.webshops-button--primary, .webshops-admin__button--primary {
  color: #fff;
  background: var(--webshops-accent);
  border-color: var(--webshops-accent);
}

.webshops-button--primary:hover, .webshops-admin__button--primary:hover {
  background: var(--webshops-accent-strong);
  border-color: var(--webshops-accent-strong);
}

.webshops-button--secondary, .webshops-admin__button--secondary {
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  border-color: var(--webshops-border);
}

.webshops-button--secondary:hover, .webshops-admin__button--secondary:hover {
  color: var(--webshops-accent-strong);
  border-color: var(--webshops-accent);
}

.webshops-button--wide {
  width: 100%;
}

.webshops-button:disabled, .webshops-admin__button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.webshops-button:focus-visible, .webshops-product-card a:focus-visible, .webshops-category-card:focus-visible, .webshops-mini-cart button:focus-visible, .webshops-mini-cart a:focus-visible, .webshops-admin button:focus-visible, .webshops-admin a:focus-visible, .webshops-admin input:focus-visible, .webshops-admin select:focus-visible, .webshops-admin textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--webshops-accent) 40%, transparent);
  outline-offset: 2px;
}

.webshops-empty-state {
  border: 1px dashed var(--webshops-border);
  border-radius: var(--webshops-radius);
  color: var(--webshops-muted);
  background: var(--webshops-surface-subtle);
  text-align: center;
  margin: 0;
  padding: 2.5rem;
}

.webshops-featured-product {
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  align-items: stretch;
  padding: clamp(1rem, 4vw, 2.5rem);
  display: grid;
}

.webshops-featured-product__visual {
  border-radius: var(--webshops-radius) 0 0 var(--webshops-radius);
  min-height: 24rem;
}

.webshops-featured-product__content {
  border: 1px solid var(--webshops-border);
  border-radius: 0 var(--webshops-radius) var(--webshops-radius) 0;
  background: var(--webshops-surface);
  border-left: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem);
  display: flex;
}

.webshops-featured-product__content h3 {
  margin: 1rem 0 0;
  font-size: 1.35rem;
}

.webshops-featured-product__content .webshops-product-price {
  margin: 1.5rem 0;
  font-size: 1.35rem;
}

.webshops-eyebrow, .webshops-admin__eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--webshops-accent) !important;
  margin: 0 0 .45rem !important;
  font-size: .75rem !important;
}

.webshops-category-card {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface);
  flex-direction: column;
  min-width: 0;
  transition: border-color .16s, box-shadow .16s, transform .16s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 .25rem 1rem #241f250d;
}

.webshops-category-card:hover {
  border-color: color-mix(in srgb, var(--webshops-accent) 45%, var(--webshops-border));
  box-shadow: var(--webshops-shadow);
  transform: translateY(-2px);
}

.webshops-category-card__visual {
  aspect-ratio: 16 / 9;
}

.webshops-category-card__content {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
}

.webshops-category-card__content strong {
  font-size: 1.15rem;
}

.webshops-category-card__content > span {
  color: var(--webshops-muted);
  margin-top: .35rem;
  font-size: .88rem;
  line-height: 1.5;
}

.webshops-category-card__content small {
  color: var(--webshops-accent-strong);
  margin-top: auto;
  padding-top: .8rem;
  font-weight: 650;
}

.webshops-mini-cart__trigger {
  z-index: 9990;
  right: max(1rem,env(safe-area-inset-right));
  bottom: max(1rem,env(safe-area-inset-bottom));
  color: #fff;
  background: var(--webshops-accent);
  min-height: 3.25rem;
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: .55rem;
  padding: .7rem .9rem;
  font-weight: 750;
  display: inline-flex;
  position: fixed;
  box-shadow: 0 .65rem 1.75rem #3c0f4047;
}

.webshops-mini-cart__trigger:hover {
  background: var(--webshops-accent-strong);
}

.webshops-mini-cart__trigger .material-symbols-outlined {
  font-size: 1.3rem;
}

.webshops-mini-cart__count {
  min-width: 1.55rem;
  height: 1.55rem;
  color: var(--webshops-accent-strong);
  background: #fff;
  border-radius: 999px;
  place-items: center;
  padding-inline: .25rem;
  font-size: .72rem;
  display: grid;
}

.webshops-mini-cart__backdrop {
  z-index: 9991;
  cursor: default;
  background: #140f1580;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  animation: .16s ease-out webshops-fade-in;
  position: fixed;
  inset: 0;
}

.webshops-mini-cart__drawer {
  z-index: 9992;
  width: min(100%, 27rem);
  height: 100dvh;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  animation: .2s ease-out webshops-drawer-in;
  display: grid;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: -1rem 0 3rem #140f1533;
}

.webshops-mini-cart__header {
  border-bottom: 1px solid var(--webshops-border);
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  display: flex;
}

.webshops-mini-cart__header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.webshops-icon-button {
  border: 1px solid var(--webshops-border);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  font: inherit;
  cursor: pointer;
  border-radius: .5rem;
  flex: none;
  place-items: center;
  padding: 0;
  display: inline-grid;
}

.webshops-icon-button:hover {
  color: var(--webshops-accent-strong);
  border-color: var(--webshops-accent);
}

.webshops-mini-cart__body {
  overscroll-behavior: contain;
  overflow-y: auto;
}

.webshops-loading, .webshops-mini-cart__empty {
  color: var(--webshops-muted);
  text-align: center;
  padding: 3rem 1.5rem;
}

.webshops-mini-cart__empty .material-symbols-outlined {
  color: var(--webshops-accent);
  font-size: 3rem;
}

.webshops-mini-cart__empty h3 {
  color: var(--webshops-ink);
  margin: .8rem 0 0;
}

.webshops-mini-cart__empty p {
  max-width: 17rem;
  margin: .4rem auto 0;
  line-height: 1.5;
}

.webshops-mini-cart__items {
  margin: 0;
  padding: 0 1.25rem;
  list-style: none;
}

.webshops-mini-cart__item {
  border-bottom: 1px solid var(--webshops-border);
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: .9rem;
  padding: 1.15rem 0;
  display: grid;
}

.webshops-mini-cart__item-image {
  width: 5rem;
  height: 5rem;
  color: var(--webshops-muted);
  background: var(--webshops-surface-subtle);
  border-radius: .45rem;
  place-items: center;
  display: grid;
  overflow: hidden;
}

.webshops-mini-cart__item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.webshops-mini-cart__item-content {
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  min-width: 0;
  font-size: .88rem;
  display: flex;
}

.webshops-mini-cart__item-content > strong {
  overflow-wrap: anywhere;
}

.webshops-quantity-control {
  border: 1px solid var(--webshops-border);
  border-radius: .4rem;
  grid-template-columns: 1.9rem 2rem 1.9rem;
  display: inline-grid;
  overflow: hidden;
}

.webshops-quantity-control button, .webshops-quantity-control output {
  min-height: 1.9rem;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  font: inherit;
  border: 0;
  place-items: center;
  padding: 0;
  display: grid;
}

.webshops-quantity-control button {
  cursor: pointer;
}

.webshops-quantity-control button:hover:not(:disabled) {
  color: var(--webshops-accent-strong);
  background: var(--webshops-accent-soft);
}

.webshops-quantity-control button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.webshops-link-button, .webshops-admin__text-button, .webshops-admin__row-actions button {
  color: var(--webshops-accent-strong);
  font: inherit;
  text-underline-offset: .18em;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-size: .8rem;
  font-weight: 650;
  text-decoration: underline;
}

.webshops-link-button:disabled, .webshops-admin__row-actions button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.webshops-mini-cart__footer {
  padding: 1.1rem 1.25rem max(1.25rem,env(safe-area-inset-bottom));
  border-top: 1px solid var(--webshops-border);
  background: var(--webshops-surface);
}

.webshops-mini-cart__footer dl {
  margin: 0;
}

.webshops-mini-cart__footer dl > div {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .45rem;
  font-size: .86rem;
  display: flex;
}

.webshops-mini-cart__footer dd {
  margin: 0;
  font-weight: 650;
}

.webshops-mini-cart__footer .webshops-mini-cart__total {
  border-top: 1px solid var(--webshops-border);
  margin-top: .7rem;
  padding-top: .7rem;
  font-size: 1rem;
  font-weight: 750;
}

.webshops-mini-cart__footer > p {
  color: var(--webshops-muted);
  margin: .7rem 0;
  font-size: .72rem;
  line-height: 1.4;
}

.webshops-notice, .webshops-admin__notice {
  border: 1px solid;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1rem;
  font-size: .86rem;
  display: flex;
}

.webshops-notice--error, .webshops-admin__notice--error {
  color: #7a1a13;
  background: #fff1f0;
  border-color: #f3b8b3;
}

.webshops-notice button {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 750;
  text-decoration: underline;
}

.webshops-admin {
  background: #f7f5f7;
  min-height: 100%;
  padding: clamp(1rem, 3vw, 2rem);
  font-size: .94rem;
}

.webshops-admin__hero {
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 88rem;
  margin: 0 auto 1.25rem;
  display: flex;
}

.webshops-admin__hero h1 {
  letter-spacing: -.03em;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
}

.webshops-admin__hero p:not(.webshops-admin__eyebrow) {
  color: var(--webshops-muted);
  margin: .55rem 0 0;
}

.webshops-admin__nav {
  border: 1px solid var(--webshops-border);
  background: var(--webshops-surface);
  scrollbar-width: thin;
  border-radius: .65rem;
  gap: .25rem;
  max-width: 88rem;
  margin: 0 auto 1rem;
  padding: .35rem;
  display: flex;
  overflow-x: auto;
}

.webshops-admin__nav button {
  min-height: 2.75rem;
  color: var(--webshops-muted);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: .45rem;
  flex: none;
  align-items: center;
  gap: .45rem;
  padding: .65rem .9rem;
  font-weight: 650;
  display: inline-flex;
}

.webshops-admin__nav button:hover {
  color: var(--webshops-ink);
  background: var(--webshops-surface-subtle);
}

.webshops-admin__nav button[aria-current="page"] {
  color: var(--webshops-accent-strong);
  background: var(--webshops-accent-soft);
}

.webshops-admin__nav .material-symbols-outlined, .webshops-admin__button .material-symbols-outlined {
  font-size: 1.15rem;
}

.webshops-admin__content {
  max-width: 88rem;
  margin-inline: auto;
}

.webshops-admin__stack {
  gap: 1rem;
  display: grid;
}

.webshops-admin__metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.webshops-admin__metric {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  min-width: 0;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  font: inherit;
  text-align: left;
  cursor: pointer;
  align-items: center;
  gap: .9rem;
  padding: 1rem;
  display: flex;
  box-shadow: 0 .2rem .75rem #241f250a;
}

.webshops-admin__metric:hover {
  border-color: var(--webshops-accent);
}

.webshops-admin__metric-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--webshops-accent-strong);
  background: var(--webshops-accent-soft);
  border-radius: .65rem;
  flex: none;
  place-items: center;
  display: grid;
}

.webshops-admin__metric > span:last-child {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.webshops-admin__metric small {
  color: var(--webshops-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .76rem;
  overflow: hidden;
}

.webshops-admin__metric strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: .2rem;
  font-size: 1.25rem;
  overflow: hidden;
}

.webshops-admin__dashboard-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, .75fr);
  gap: 1rem;
  display: grid;
}

.webshops-admin__panel {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface);
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 .2rem .75rem #241f250a;
}

.webshops-admin__panel-header {
  border-bottom: 1px solid var(--webshops-border);
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.webshops-admin__panel-header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.webshops-admin__panel-header p {
  color: var(--webshops-muted);
  margin: .3rem 0 0;
  font-size: .8rem;
}

.webshops-admin__table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.webshops-admin__pagination {
  border-top: 1px solid var(--webshops-border);
  background: var(--webshops-surface-subtle);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.15rem;
  display: flex;
}

.webshops-admin__pagination-summary {
  color: var(--webshops-muted);
  font-variant-numeric: tabular-nums;
  margin: 0;
  font-size: .8rem;
}

.webshops-admin__pagination-list {
  align-items: center;
  gap: .3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.webshops-admin__pagination-list li {
  align-items: center;
  gap: .3rem;
  display: flex;
}

.webshops-admin__pagination-list button {
  border: 1px solid var(--webshops-border);
  min-width: 2.25rem;
  min-height: 2.25rem;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  font: inherit;
  cursor: pointer;
  border-radius: .5rem;
  padding: .35rem .65rem;
  font-size: .78rem;
  font-weight: 650;
}

.webshops-admin__pagination-list button:hover:not(:disabled) {
  border-color: var(--webshops-accent);
  color: var(--webshops-accent-strong);
}

.webshops-admin__pagination-list button[aria-current="page"] {
  border-color: var(--webshops-accent);
  color: #fff;
  background: var(--webshops-accent);
}

.webshops-admin__pagination-list button:focus-visible {
  outline: 2px solid var(--webshops-accent);
  outline-offset: 2px;
}

.webshops-admin__pagination-list button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.webshops-admin__pagination-gap {
  min-width: 1rem;
  color: var(--webshops-muted);
  text-align: center;
}

.webshops-admin__table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  min-width: 44rem;
}

.webshops-admin__table th, .webshops-admin__table td {
  border-bottom: 1px solid var(--webshops-border);
  vertical-align: middle;
  padding: .8rem .9rem;
}

.webshops-admin__table thead th {
  color: var(--webshops-muted);
  background: var(--webshops-surface-subtle);
  letter-spacing: .045em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 750;
}

.webshops-admin__table tbody th {
  font-weight: 650;
}

.webshops-admin__table tbody tr:last-child > * {
  border-bottom: 0;
}

.webshops-admin__table tbody tr:hover > * {
  background: color-mix(in srgb, var(--webshops-accent-soft) 38%, transparent);
}

.webshops-admin__table td > strong, .webshops-admin__table th > strong, .webshops-admin__table td > small, .webshops-admin__table th > small {
  display: block;
}

.webshops-admin__table td > small, .webshops-admin__table th > small {
  color: var(--webshops-muted);
  margin-top: .15rem;
  font-size: .72rem;
  font-weight: 450;
}

.webshops-admin__numeric {
  font-variant-numeric: tabular-nums;
  text-align: right !important;
}

.webshops-admin__table select {
  min-width: 9.5rem;
}

.webshops-status {
  color: #504750;
  white-space: nowrap;
  background: #eee9ee;
  border-radius: 999px;
  padding: .28rem .5rem;
  font-size: .7rem;
  font-weight: 750;
  display: inline-flex;
}

.webshops-status--published, .webshops-status--publish, .webshops-status--active, .webshops-status--completed {
  color: #0e6240;
  background: #dff5ea;
}

.webshops-status--processing {
  color: #175c85;
  background: #e1f1fa;
}

.webshops-status--pending, .webshops-status--on-hold {
  color: #7a5100;
  background: #fff2ce;
}

.webshops-status--cancelled, .webshops-status--refunded, .webshops-status--archived {
  color: #7a1a13;
  background: #ffe6e3;
}

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

.webshops-admin__stock-list li {
  border-bottom: 1px solid var(--webshops-border);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.15rem;
  display: flex;
}

.webshops-admin__stock-list li:last-child {
  border-bottom: 0;
}

.webshops-admin__stock-list span, .webshops-admin__stock-list small {
  display: block;
}

.webshops-admin__stock-list small {
  color: var(--webshops-muted);
  margin-top: .15rem;
}

.webshops-admin__stock-list b {
  color: #7a5100;
  background: #fff2ce;
  border-radius: 999px;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  font-size: .78rem;
  display: grid;
}

.webshops-admin__empty {
  color: var(--webshops-muted);
  text-align: center;
  margin: 0;
  padding: 2.25rem 1.25rem;
}

.webshops-admin__loading {
  min-height: 12rem;
  color: var(--webshops-muted);
  justify-content: center;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.webshops-admin__spinner {
  border: 2px solid var(--webshops-border);
  border-top-color: var(--webshops-accent);
  border-radius: 50%;
  width: 1.15rem;
  height: 1.15rem;
  animation: .7s linear infinite webshops-spin;
}

.webshops-admin__toolbar {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.webshops-admin__filters {
  flex-wrap: wrap;
  gap: .55rem;
  min-width: 0;
  display: flex;
}

.webshops-admin__search {
  align-items: center;
  min-width: min(20rem, 100%);
  display: flex;
  position: relative;
}

.webshops-admin__search .material-symbols-outlined {
  color: var(--webshops-muted);
  pointer-events: none;
  font-size: 1.1rem;
  position: absolute;
  left: .7rem;
}

.webshops-admin__search input {
  width: 100%;
  padding-left: 2.25rem !important;
}

.webshops-admin input, .webshops-admin select, .webshops-admin textarea {
  border: 1px solid var(--webshops-border);
  min-height: 2.65rem;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  font: inherit;
  border-radius: .45rem;
  padding: .58rem .7rem;
  line-height: 1.35;
}

.webshops-admin textarea {
  resize: vertical;
  min-height: auto;
}

.webshops-admin input:hover, .webshops-admin select:hover, .webshops-admin textarea:hover {
  border-color: color-mix(in srgb, var(--webshops-accent) 55%, var(--webshops-border));
}

.webshops-admin__button--compact {
  min-height: 2.2rem;
  color: var(--webshops-accent-strong);
  border-color: var(--webshops-border);
  background: var(--webshops-surface);
  padding: .45rem .7rem;
}

.webshops-admin__notice {
  background: var(--webshops-surface);
  border-left-width: 4px;
}

.webshops-admin__notice--success {
  color: #0e6240;
  background: #effaf5;
  border-color: #68b894;
}

.webshops-admin__notice--info {
  color: #175c85;
  background: #eef8fd;
  border-color: #84bfdf;
}

.webshops-admin__editor {
  display: block;
}

.webshops-admin__form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem;
  display: grid;
}

.webshops-admin__field {
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
  display: flex;
}

.webshops-admin__field > span:first-child {
  font-size: .78rem;
  font-weight: 700;
}

.webshops-admin__field--wide {
  grid-column: 1 / -1;
}

.webshops-admin__field input, .webshops-admin__field select, .webshops-admin__field textarea {
  width: 100%;
}

.webshops-admin__input-prefix {
  border: 1px solid var(--webshops-border);
  background: var(--webshops-surface-subtle);
  border-radius: .45rem;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.webshops-admin__input-prefix > span {
  color: var(--webshops-muted);
  padding-inline: .7rem;
}

.webshops-admin__input-prefix input {
  border-radius: 0 .45rem .45rem 0;
  margin: -1px;
}

.webshops-admin__check {
  align-items: center;
  gap: .55rem;
  font-weight: 650;
  display: flex;
}

.webshops-admin__check input {
  width: 1.05rem;
  min-height: 1.05rem;
  accent-color: var(--webshops-accent);
  margin: 0;
}

.webshops-admin__form-actions {
  border-top: 1px solid var(--webshops-border);
  background: var(--webshops-surface-subtle);
  justify-content: flex-end;
  gap: .6rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.webshops-admin__variants {
  border: 1px solid var(--webshops-border);
  border-radius: .55rem;
  min-width: 0;
  margin: 0;
  padding: 1rem;
}

.webshops-admin__variants > legend {
  padding-inline: .35rem;
  font-weight: 750;
}

.webshops-admin__variants > p {
  color: var(--webshops-muted);
  margin: 0 0 .9rem;
  font-size: .8rem;
  line-height: 1.5;
}

.webshops-admin__variant-list {
  gap: .75rem;
  margin-bottom: .75rem;
  display: grid;
}

.webshops-admin__variant {
  border: 1px solid var(--webshops-border);
  background: var(--webshops-surface-subtle);
  border-radius: .5rem;
  overflow: hidden;
}

.webshops-admin__variant > header {
  border-bottom: 1px solid var(--webshops-border);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .7rem .8rem;
  display: flex;
}

.webshops-admin__variant > header h3 {
  margin: 0;
  font-size: .9rem;
}

.webshops-admin__variant > header button {
  color: var(--webshops-danger);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: underline;
}

.webshops-admin__variant > header button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.webshops-admin__variant-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  padding: .8rem;
  display: grid;
}

.webshops-admin__product-cell {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.webshops-admin__product-cell > span:last-child {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.webshops-admin__product-cell small {
  color: var(--webshops-accent-strong);
  font-size: .7rem;
}

.webshops-admin__thumbnail {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--webshops-muted);
  background: var(--webshops-surface-subtle);
  border-radius: .4rem;
  flex: none;
  place-items: center;
  display: grid;
  overflow: hidden;
}

.webshops-admin__thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.webshops-admin__row-actions {
  white-space: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: .65rem;
  display: flex;
}

.webshops-admin__row-actions .webshops-admin__danger-link {
  color: var(--webshops-danger);
}

.webshops-admin__table code {
  color: var(--webshops-accent-strong);
  background: var(--webshops-accent-soft);
  border-radius: .3rem;
  padding: .25rem .45rem;
  font-size: .8rem;
  font-weight: 750;
  display: inline-block;
}

.webshops-page {
  width: min(100%, 76rem);
  min-height: 30rem;
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.webshops-page__hero {
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.webshops-page__hero h1 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
}

.webshops-page__notice {
  color: #175c85;
  background: #eef8fd;
  border: 1px solid #84bfdf;
  border-radius: .55rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  display: flex;
}

.webshops-page__notice--error {
  color: #7a1a13;
  background: #fff1f0;
  border-color: #f3b8b3;
}

.webshops-page__notice button {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  flex: none;
  padding: 0;
  font-weight: 750;
  text-decoration: underline;
}

.webshops-page__loading {
  min-height: 14rem;
  color: var(--webshops-muted);
  justify-content: center;
  align-items: center;
  gap: .7rem;
  display: flex;
}

.webshops-page__empty {
  border: 1px dashed var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface-subtle);
  text-align: center;
  padding: clamp(2rem, 7vw, 5rem) 1rem;
}

.webshops-page__empty h2 {
  margin: 0 0 1rem;
}

.webshops-page__panel {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface);
  min-width: 0;
  margin: 0;
  padding: 1.25rem;
}

.webshops-page__panel legend, .webshops-page__panel > h2 {
  margin: 0;
  padding: 0 .35rem;
  font-size: 1.2rem;
  font-weight: 750;
}

.webshops-page__field {
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
  display: flex;
}

.webshops-page__field > span, .webshops-cart-page__quantity > span, .webshops-cart-page__coupon > label {
  font-size: .8rem;
  font-weight: 700;
}

.webshops-page input, .webshops-page select, .webshops-page textarea {
  border: 1px solid var(--webshops-border);
  min-height: 2.75rem;
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  font: inherit;
  border-radius: .45rem;
  padding: .6rem .7rem;
}

.webshops-page input:focus-visible, .webshops-page select:focus-visible, .webshops-page textarea:focus-visible, .webshops-page button:focus-visible, .webshops-page a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--webshops-accent) 40%, transparent);
  outline-offset: 2px;
}

.webshops-page__check {
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  line-height: 1.45;
  display: flex;
}

.webshops-page__check input {
  width: 1.1rem;
  min-height: 1.1rem;
  accent-color: var(--webshops-accent);
  flex: none;
  margin-top: .08rem;
}

.webshops-page__breadcrumbs {
  color: var(--webshops-muted);
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  display: flex;
}

.webshops-page__breadcrumbs a {
  color: var(--webshops-accent-strong);
}

.webshops-catalog-page__search {
  width: min(100%, 24rem);
}

.webshops-catalog-page__search > label {
  margin-bottom: .35rem;
  font-size: .8rem;
  font-weight: 700;
  display: block;
}

.webshops-catalog-page__search > div {
  gap: .45rem;
  display: flex;
}

.webshops-catalog-page__search input {
  flex: 1;
  min-width: 0;
}

.webshops-catalog-page__categories {
  gap: .45rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  display: flex;
  overflow-x: auto;
}

.webshops-catalog-page__categories a {
  border: 1px solid var(--webshops-border);
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  border-radius: 999px;
  flex: none;
  padding: .5rem .75rem;
  font-size: .8rem;
  font-weight: 650;
  text-decoration: none;
}

.webshops-catalog-page__categories a:hover {
  color: var(--webshops-accent-strong);
  border-color: var(--webshops-accent);
}

.webshops-catalog-page > .webshops-block {
  padding-inline: 0;
  width: 100%;
  padding-bottom: 0;
}

.webshops-catalog-page > .webshops-block .webshops-block__header:empty {
  display: none;
}

.webshops-product-page__layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
  display: grid;
}

.webshops-product-page__visual {
  aspect-ratio: 1;
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface-subtle);
  position: sticky;
  top: 1rem;
  overflow: hidden;
}

.webshops-product-page__visual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.webshops-product-page__content h1 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.webshops-product-page__price {
  color: var(--webshops-accent-strong);
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.webshops-product-page__lead, .webshops-product-page__description p {
  color: var(--webshops-muted);
  line-height: 1.65;
}

.webshops-product-page__content > .webshops-page__field {
  margin-block: 1.25rem;
}

.webshops-product-page__purchase {
  align-items: flex-end;
  gap: .65rem;
  margin-block: 1.25rem;
  display: flex;
}

.webshops-product-page__purchase label {
  flex-direction: column;
  gap: .35rem;
  width: 6rem;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
}

.webshops-product-page__purchase .webshops-button {
  min-height: 2.75rem;
}

.webshops-product-page__description {
  border-top: 1px solid var(--webshops-border);
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.webshops-product-page__description h2 {
  margin: 0;
  font-size: 1.1rem;
}

.webshops-cart-page__layout, .webshops-checkout-page__layout {
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, .7fr);
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
  display: grid;
}

.webshops-cart-page__lines {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface);
  overflow: hidden;
}

.webshops-cart-page__line {
  border-bottom: 1px solid var(--webshops-border);
  grid-template-columns: 5.5rem minmax(0, 1fr) 5rem auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  display: grid;
}

.webshops-cart-page__line:last-child {
  border-bottom: 0;
}

.webshops-cart-page__image {
  width: 5.5rem;
  height: 5.5rem;
  color: var(--webshops-muted);
  background: var(--webshops-surface-subtle);
  border-radius: .5rem;
  place-items: center;
  display: grid;
  overflow: hidden;
}

.webshops-cart-page__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.webshops-cart-page__line h2, .webshops-cart-page__line p {
  margin: 0 0 .3rem;
}

.webshops-cart-page__line h2 {
  font-size: 1rem;
}

.webshops-cart-page__line > strong {
  font-variant-numeric: tabular-nums;
}

.webshops-cart-page__quantity {
  flex-direction: column;
  gap: .35rem;
  display: flex;
}

.webshops-cart-page__quantity input {
  width: 5rem;
}

.webshops-cart-page__summary {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  background: var(--webshops-surface);
  box-shadow: var(--webshops-shadow);
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}

.webshops-cart-page__summary > h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.webshops-cart-page__summary dl {
  margin: 0 0 1rem;
}

.webshops-cart-page__summary dl > div, .webshops-order-page dl > div {
  justify-content: space-between;
  gap: 1rem;
  padding-block: .4rem;
  display: flex;
}

.webshops-cart-page__summary dd, .webshops-order-page dd {
  margin: 0;
  font-weight: 700;
}

.webshops-cart-page__grand-total {
  border-top: 1px solid var(--webshops-border);
  margin-top: .5rem;
  font-size: 1.08rem;
  font-weight: 800;
  padding-top: .85rem !important;
}

.webshops-cart-page__coupon {
  border-block: 1px solid var(--webshops-border);
  margin-block: 1rem;
  padding-block: 1rem;
}

.webshops-cart-page__coupon > label {
  margin-bottom: .35rem;
  display: block;
}

.webshops-cart-page__coupon > div {
  display: flex;
}

.webshops-cart-page__coupon input {
  border-radius: .45rem 0 0 .45rem;
  flex: 1;
  min-width: 0;
}

.webshops-cart-page__coupon button {
  border: 1px solid var(--webshops-accent);
  color: #fff;
  background: var(--webshops-accent);
  font: inherit;
  cursor: pointer;
  border-radius: 0 .45rem .45rem 0;
  padding-inline: .8rem;
  font-weight: 700;
}

.webshops-checkout-page__main {
  gap: 1rem;
  display: grid;
}

.webshops-checkout-page__fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: .75rem;
  display: grid;
}

.webshops-checkout-page__fields .webshops-page__field:first-child, .webshops-checkout-page__fields .webshops-page__field:nth-child(4), .webshops-checkout-page__fields .webshops-page__field:nth-child(5), .webshops-checkout-page__fields .webshops-page__field:nth-child(6) {
  grid-column: 1 / -1;
}

.webshops-checkout-page__payments {
  gap: .65rem;
  margin-top: .75rem;
  display: grid;
}

.webshops-checkout-page__payments label {
  border: 1px solid var(--webshops-border);
  cursor: pointer;
  border-radius: .45rem;
  align-items: center;
  gap: .55rem;
  padding: .75rem;
  display: flex;
}

.webshops-checkout-page__payments label:has(input:checked) {
  color: var(--webshops-accent-strong);
  border-color: var(--webshops-accent);
  background: var(--webshops-accent-soft);
}

.webshops-checkout-page__payments input {
  width: 1rem;
  min-height: 1rem;
  accent-color: var(--webshops-accent);
  margin: 0;
}

.webshops-checkout-page__summary-lines, .webshops-order-page__items {
  border-bottom: 1px solid var(--webshops-border);
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  list-style: none;
}

.webshops-checkout-page__summary-lines li, .webshops-order-page__items li {
  justify-content: space-between;
  gap: 1rem;
  padding-block: .45rem;
  font-size: .88rem;
  display: flex;
}

.webshops-checkout-page__summary-lines small, .webshops-order-page__items small {
  color: var(--webshops-muted);
  margin-top: .2rem;
  display: block;
}

.webshops-checkout-page__layout .webshops-page__check {
  margin-block: 1rem;
}

.webshops-order-page__success {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2rem;
}

.webshops-order-page__success > .material-symbols-outlined {
  color: var(--webshops-success);
  font-size: 4rem;
}

.webshops-order-page__success h1 {
  margin: .75rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.webshops-order-page__success p {
  color: var(--webshops-muted);
  margin: .55rem 0 0;
}

.webshops-order-page__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, .65fr);
  gap: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.webshops-order-page__items {
  margin-top: 1rem;
}

.webshops-order-page address {
  color: var(--webshops-muted);
  margin-top: 1rem;
  font-style: normal;
  line-height: 1.65;
}

.webshops-order-page__instructions {
  border-top: 1px solid var(--webshops-border);
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.webshops-order-page__instructions h3, .webshops-order-page__instructions p {
  margin: 0;
}

.webshops-order-page__instructions p {
  color: var(--webshops-muted);
  white-space: pre-line;
  margin-top: .45rem;
}

.webshops-admin__order-actions {
  white-space: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: .45rem;
  display: flex;
}

.webshops-admin__dialog-layer {
  z-index: 10000;
  place-items: center;
  padding: clamp(.5rem, 3vw, 2rem);
  display: grid;
  position: fixed;
  inset: 0;
}

.webshops-admin__dialog-backdrop {
  cursor: default;
  background: #140f1594;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  animation: .16s ease-out webshops-fade-in;
  position: absolute;
  inset: 0;
}

.webshops-admin__dialog {
  border: 1px solid var(--webshops-border);
  border-radius: var(--webshops-radius);
  width: min(64rem, 100%);
  max-height: calc(100dvh - clamp(1rem, 6vw, 4rem));
  color: var(--webshops-ink);
  background: var(--webshops-surface);
  grid-template-rows: auto minmax(0, 1fr);
  animation: .18s ease-out webshops-dialog-in;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1.5rem 5rem #140f1559;
}

.webshops-admin__dialog-header {
  border-bottom: 1px solid var(--webshops-border);
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
}

.webshops-admin__dialog-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.webshops-admin__dialog-body {
  overscroll-behavior: contain;
  padding: clamp(.8rem, 2vw, 1.25rem);
  overflow-y: auto;
}

.webshops-admin__order-detail {
  gap: 1rem;
  display: grid;
}

.webshops-admin__order-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  display: grid;
}

.webshops-admin__order-summary > div {
  background: var(--webshops-surface-subtle);
  border-radius: .5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  min-width: 0;
  padding: .8rem;
  display: flex;
}

.webshops-admin__order-summary > div > span:first-child {
  color: var(--webshops-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
}

.webshops-admin__order-summary a {
  max-width: 100%;
  color: var(--webshops-accent-strong);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 650;
  overflow: hidden;
}

.webshops-admin__order-addresses, .webshops-admin__order-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.webshops-admin__detail-card {
  border: 1px solid var(--webshops-border);
  background: var(--webshops-surface);
  border-radius: .6rem;
  min-width: 0;
  padding: 1rem;
}

.webshops-admin__detail-card > h3 {
  margin: 0 0 .75rem;
  font-size: 1rem;
}

.webshops-admin__detail-card address {
  color: var(--webshops-muted);
  font-style: normal;
  line-height: 1.55;
}

.webshops-admin__detail-card address span {
  display: block;
}

.webshops-admin__order-lines {
  min-width: 42rem;
  margin: -.25rem 0 -.75rem;
}

.webshops-admin__detail-list {
  margin: 0;
}

.webshops-admin__detail-list > div {
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: .38rem;
  display: flex;
}

.webshops-admin__detail-list dt {
  color: var(--webshops-muted);
}

.webshops-admin__detail-list dd {
  text-align: right;
  text-transform: capitalize;
  margin: 0;
  font-weight: 650;
}

.webshops-admin__detail-total {
  border-top: 1px solid var(--webshops-border);
  color: var(--webshops-ink);
  margin-top: .45rem;
  font-size: 1.05rem;
  font-weight: 800;
  padding-top: .75rem !important;
}

.webshops-admin__notes {
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.webshops-admin__notes li {
  background: var(--webshops-surface-subtle);
  border-radius: .45rem;
  padding: .75rem;
}

.webshops-admin__notes li > div {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.webshops-admin__notes time {
  color: var(--webshops-muted);
  font-size: .74rem;
}

.webshops-admin__notes p {
  white-space: pre-line;
  margin: .55rem 0 0;
  line-height: 1.55;
}

@keyframes webshops-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes webshops-drawer-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes webshops-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes webshops-dialog-in {
  from {
    opacity: 0;
    transform: translateY(.75rem)scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@media (max-width: 70rem) {
  .webshops-card-grid {
    grid-template-columns: repeat(min(var(--webshops-grid-columns, 3), 2), minmax(0, 1fr));
  }

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

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

@media (max-width: 48rem) {
  .webshops-featured-product {
    grid-template-columns: 1fr;
  }

  .webshops-featured-product__visual {
    border-radius: var(--webshops-radius) var(--webshops-radius) 0 0;
    min-height: 18rem;
  }

  .webshops-featured-product__content {
    border-top: 0;
    border-left: 1px solid var(--webshops-border);
    border-radius: 0 0 var(--webshops-radius) var(--webshops-radius);
  }

  .webshops-admin__hero, .webshops-admin__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .webshops-admin__hero .webshops-admin__button {
    align-self: flex-start;
  }

  .webshops-admin__filters, .webshops-admin__filters > * {
    width: 100%;
  }

  .webshops-admin__search {
    min-width: 0;
  }

  .webshops-admin__form-grid, .webshops-admin__variant-grid {
    grid-template-columns: 1fr;
  }

  .webshops-admin__field--wide {
    grid-column: auto;
  }

  .webshops-page__hero, .webshops-product-page__layout, .webshops-cart-page__layout, .webshops-checkout-page__layout, .webshops-order-page__grid {
    grid-template-columns: 1fr;
  }

  .webshops-page__hero {
    flex-direction: column;
    align-items: stretch;
  }

  .webshops-product-page__visual, .webshops-cart-page__summary {
    position: static;
  }

  .webshops-cart-page__line {
    grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  }

  .webshops-cart-page__image {
    width: 4.5rem;
    height: 4.5rem;
  }

  .webshops-cart-page__quantity {
    grid-column: 2;
  }

  .webshops-cart-page__line > strong {
    grid-area: 1 / 3;
  }

  .webshops-admin__order-summary, .webshops-admin__order-addresses, .webshops-admin__order-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 36rem) {
  .webshops-card-grid {
    grid-template-columns: 1fr;
  }

  .webshops-product-actions > * {
    flex: auto;
  }

  .webshops-mini-cart__trigger-label {
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
  }

  .webshops-mini-cart__drawer {
    width: 100%;
  }

  .webshops-admin {
    padding: .75rem;
  }

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

  .webshops-admin__nav button {
    justify-content: center;
    min-width: 3rem;
  }

  .webshops-admin__nav button span:not(.material-symbols-outlined) {
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
  }

  .webshops-admin__form-actions {
    flex-direction: column-reverse;
  }

  .webshops-admin__form-actions .webshops-admin__button {
    width: 100%;
  }

  .webshops-admin__pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .webshops-admin__pagination-list {
    max-width: 100%;
    overflow-x: auto;
  }

  .webshops-page {
    padding-inline: .85rem;
  }

  .webshops-checkout-page__fields {
    grid-template-columns: 1fr;
  }

  .webshops-checkout-page__fields .webshops-page__field {
    grid-column: auto !important;
  }

  .webshops-cart-page__line {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .webshops-cart-page__image {
    width: 4rem;
    height: 4rem;
  }

  .webshops-cart-page__line > strong {
    grid-area: auto / 2;
  }

  .webshops-admin__dialog-layer {
    padding: 0;
  }

  .webshops-admin__dialog {
    border: 0;
    border-radius: 0;
    width: 100%;
    max-height: 100dvh;
  }

  .webshops-admin__order-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webshops-product-card, .webshops-category-card, .webshops-product-card img, .webshops-category-card img, .webshops-mini-cart__backdrop, .webshops-mini-cart__drawer, .webshops-admin__dialog-backdrop, .webshops-admin__dialog, .webshops-admin__spinner {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/*# sourceMappingURL=src_0tdr7-v._.css.map*/