:root {
  --ariella-accent: #c21f54;
  --ariella-accent-dark: #8d163e;
  --ariella-accent-light: #f05c67;
  --ariella-hot: #ff7954;
  --ariella-red: #c7193f;
  --ariella-gold: #f3b83f;
  --ariella-ink: #353444;
  --ariella-muted: #74727f;
  --ariella-border: #e5e4eb;
  --ariella-surface: #f7f7f9;
  --ariella-surface-purple: #fff0f3;
  --ariella-white: #fff;
  --ariella-success: #168457;
  --ariella-danger: #b3261e;
  --ariella-container: 1140px;
  --ariella-shadow: 0 12px 36px rgb(91 20 49 / 14%);
  --ariella-font: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ariella-ink);
  background: var(--ariella-white);
  font-family: var(--ariella-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--ariella-accent);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

a:hover,
a:focus-visible {
  color: var(--ariella-accent-dark);
}

button,
input,
select,
textarea {
  border-radius: 2px;
  font: inherit;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ariella-accent-light) 58%, white);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ariella-ink);
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 0.75em;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1.15em;
}

blockquote {
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.site-container {
  margin-inline: auto;
  max-width: calc(var(--ariella-container) + 30px);
  padding-inline: 15px;
  width: 100%;
}

.site-main {
  min-height: 40vh;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: #fff;
  clip: auto !important;
  clip-path: none;
  color: var(--ariella-ink);
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 14px 18px;
  top: 8px;
  width: auto;
  z-index: 100000;
}

.ariella-icon {
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  align-items: center;
  background: var(--ariella-accent);
  border: 1px solid var(--ariella-accent);
  border-radius: 2px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  line-height: 1.2;
  min-height: 46px;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
  background: var(--ariella-accent-dark);
  border-color: var(--ariella-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.button .ariella-icon,
.section-link .ariella-icon,
.text-link .ariella-icon {
  height: 18px;
  width: 18px;
}

.button--light {
  background: #fff;
  border-color: #fff;
  color: var(--ariella-accent-dark);
}

.button--light:hover,
.button--light:focus-visible {
  background: #fff1f3;
  border-color: #fff1f3;
  color: var(--ariella-accent-dark);
}

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

.section-space {
  padding-block: 78px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--ariella-accent);
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  margin-bottom: 0;
  text-transform: uppercase;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-kicker {
  color: var(--ariella-accent-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-link,
.text-link {
  align-items: center;
  color: var(--ariella-accent);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
}

.section-link:hover .ariella-icon,
.text-link:hover .ariella-icon {
  transform: translateX(3px);
}

.section-link .ariella-icon,
.text-link .ariella-icon {
  transition: transform 180ms ease;
}

/* Header */
.site-header {
  background: rgb(238 239 242 / 76%);
  border-bottom: 1px solid rgb(255 255 255 / 70%);
  box-shadow: 0 10px 34px rgb(54 45 51 / 9%);
  isolation: isolate;
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  z-index: 100;
}

.admin-bar .site-header {
  top: 32px;
}

.header-top {
  background: linear-gradient(110deg, rgb(250 250 252 / 82%), rgb(231 233 237 / 68%));
  border-bottom: 1px solid rgb(255 255 255 / 78%);
}

.header-top__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 66px;
}

.site-branding {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.custom-logo-link {
  display: block;
  flex: 0 0 auto;
}

.custom-logo {
  max-height: 52px;
  width: auto;
}

.brand-fallback,
.brand-fallback__crop {
  display: block;
}

.brand-fallback__crop {
  height: 58px;
  overflow: hidden;
  position: relative;
  width: 190px;
}

.brand-fallback__crop img {
  left: -7px;
  max-width: none;
  position: absolute;
  top: -22px;
  width: 205px;
}

.site-branding__tagline {
  border-left: 1px solid var(--ariella-border);
  color: #777581;
  font-size: 10px;
  line-height: 1.45;
  margin: 0;
  max-width: 150px;
  padding-left: 14px;
}

.primary-navigation {
  flex: 1 1 auto;
}

.primary-navigation ul,
.header-actions,
.category-menu ul,
.footer-menu,
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-navigation > ul {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.35vw, 20px);
  justify-content: flex-end;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  color: #443d42;
  display: block;
  font-size: 11px;
  font-weight: 500;
  padding-block: 22px;
  white-space: nowrap;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  color: var(--ariella-accent);
}

.primary-navigation .sub-menu {
  background: rgb(250 250 251 / 94%);
  border-top: 3px solid var(--ariella-accent);
  box-shadow: var(--ariella-shadow);
  display: none;
  left: -18px;
  min-width: 230px;
  padding: 10px 0;
  position: absolute;
  top: calc(100% - 3px);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
  display: block;
}

.primary-navigation .sub-menu a {
  padding: 9px 18px;
}

.header-phone {
  align-items: center;
  color: var(--ariella-accent);
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  gap: 7px;
  white-space: nowrap;
}

.header-phone .ariella-icon {
  height: 18px;
  width: 18px;
}

.header-service {
  background: linear-gradient(112deg, rgb(194 31 84 / 96%), rgb(240 92 103 / 94%) 62%, rgb(255 121 84 / 94%));
  border-bottom: 1px solid rgb(255 255 255 / 24%);
  border-top: 1px solid rgb(255 255 255 / 26%);
}

.header-service__inner {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 150px minmax(260px, 1fr) 178px auto;
  min-height: 82px;
}

.catalog-toggle,
.price-button {
  align-items: center;
  border-radius: 2px;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
}

.catalog-toggle {
  background: rgb(115 12 49 / 52%);
  border: 1px solid rgb(255 255 255 / 35%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%);
  gap: 20px;
  width: 100%;
}

.catalog-toggle:hover {
  background: rgb(105 9 43 / 76%);
}

.catalog-toggle .ariella-icon {
  height: 19px;
  width: 19px;
}

.price-button {
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 72%);
  text-align: center;
}

.price-button:hover,
.price-button:focus-visible {
  background: #fff;
  color: var(--ariella-accent);
}

.product-search {
  display: flex;
  position: relative;
}

.product-search input[type="search"] {
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(255 255 255 / 72%);
  box-shadow: 0 7px 22px rgb(102 13 48 / 11%);
  color: var(--ariella-ink);
  font-size: 13px;
  height: 46px;
  padding: 0 48px 0 18px;
  width: 100%;
}

.product-search input[type="search"]::placeholder {
  color: #a2a0a9;
}

.product-search input[type="search"]:focus {
  border-color: var(--ariella-accent);
  outline: 0;
}

.product-search button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ariella-accent);
  display: flex;
  height: 46px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
}

.product-search button .ariella-icon {
  height: 19px;
  width: 19px;
}

.header-actions {
  align-items: stretch;
  display: flex;
  gap: 14px;
}

.header-action {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  gap: 4px;
  min-width: 44px;
  position: relative;
}

.header-action:hover,
.header-action:focus-visible {
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.header-action .ariella-icon {
  height: 23px;
  width: 23px;
}

.header-action__icon-wrap {
  display: block;
  position: relative;
}

.header-action__count {
  align-items: center;
  background: var(--ariella-gold);
  border-radius: 50%;
  color: #5e1532;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  height: 16px;
  justify-content: center;
  line-height: 1;
  min-width: 16px;
  padding: 2px;
  position: absolute;
  right: -10px;
  top: -7px;
}

.category-menu {
  background: rgb(226 228 232 / 68%);
  border-bottom: 1px solid rgb(255 255 255 / 74%);
  padding-block: 14px;
}

.category-menu__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.category-menu__list a {
  background: rgb(255 255 255 / 56%);
  border: 1px solid rgb(255 255 255 / 78%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 72%);
  color: var(--ariella-accent);
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 20px;
  text-align: center;
}

.category-menu__list a:hover,
.category-menu__list .current-menu-item > a {
  background: linear-gradient(105deg, var(--ariella-accent), var(--ariella-accent-light));
  border-color: transparent;
  color: #fff;
}

/* Mobile navigation */
.mobile-menu,
.mobile-menu-overlay {
  display: none;
}

.mobile-menu {
  background: rgb(247 247 249 / 96%);
  bottom: 0;
  box-shadow: 20px 0 60px rgb(0 0 0 / 20%);
  left: 0;
  max-width: 420px;
  overflow-y: auto;
  padding: 20px;
  position: fixed;
  top: 0;
  transform: translateX(-105%);
  transition: transform 240ms ease;
  width: min(90vw, 420px);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1002;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  background: rgb(24 22 38 / 52%);
  inset: 0;
  position: fixed;
  z-index: 1001;
}

.mobile-menu__head {
  align-items: center;
  border-bottom: 1px solid var(--ariella-border);
  display: flex;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.mobile-menu__head button {
  background: transparent;
  border: 0;
  color: var(--ariella-ink);
  padding: 6px;
}

.mobile-menu__search {
  background: var(--ariella-surface-purple);
  margin: 0 -6px 18px;
  padding: 8px;
}

.mobile-menu__nav a,
.mobile-menu .menu > li > a {
  border-bottom: 1px solid var(--ariella-border);
  color: var(--ariella-ink);
  display: block;
  font-size: 15px;
  padding: 13px 4px;
}

.mobile-menu .sub-menu {
  padding-left: 18px;
}

.mobile-menu .sub-menu a {
  color: var(--ariella-muted);
  font-size: 13px;
}

.mobile-menu__actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-block: 24px;
}

.mobile-menu__actions a,
.mobile-menu__phone {
  align-items: center;
  border: 1px solid var(--ariella-border);
  color: var(--ariella-accent);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  padding: 11px 8px;
}

.mobile-menu__actions .ariella-icon,
.mobile-menu__phone .ariella-icon {
  height: 19px;
  width: 19px;
}

/* Hero and homepage */
.hero {
  background-color: #f6eee9;
  background-image: url("../images/hero-ariella.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 410px;
}

.hero__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 410px;
}

.hero__content {
  max-width: 420px;
  padding: 34px 24px;
  text-align: center;
}

.hero__eyebrow {
  color: var(--ariella-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ariella-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.7vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero__content > p:not(.hero__eyebrow) {
  color: #5f5360;
  font-size: 15px;
  margin-inline: auto;
  max-width: 330px;
}

.hero .button {
  margin-top: 6px;
}

.benefits {
  background: #fff;
  padding-block: 46px 52px;
}

.benefits__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

.benefit {
  align-items: center;
  color: var(--ariella-accent);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.benefit > .ariella-icon {
  height: 42px;
  margin-bottom: 12px;
  stroke-width: 1.2;
  width: 42px;
}

.benefit p {
  color: var(--ariella-ink);
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
  text-transform: uppercase;
}

.benefit strong,
.benefit span {
  display: block;
}

.benefit strong {
  font-weight: 600;
}

.benefit span {
  color: var(--ariella-muted);
}

.minimum-order {
  margin-bottom: 28px;
}

.minimum-order p {
  background: var(--ariella-surface);
  border-radius: 9px;
  color: #55535f;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin: 0;
  padding: 24px 30px;
  text-align: center;
  text-transform: uppercase;
}

.price-cta {
  align-items: center;
  background: linear-gradient(120deg, var(--ariella-accent), var(--ariella-accent-light) 68%, var(--ariella-hot));
  border-radius: 10px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  min-height: 220px;
  overflow: hidden;
  padding: 42px clamp(30px, 5vw, 76px);
  position: relative;
}

.price-cta::before {
  background: radial-gradient(circle, rgb(255 255 255 / 16%) 0 2px, transparent 3px);
  background-size: 18px 18px;
  content: "";
  inset: 0 0 0 55%;
  mask-image: linear-gradient(90deg, transparent, #000);
  position: absolute;
}

.price-cta__content {
  max-width: 710px;
  position: relative;
  z-index: 1;
}

.price-cta .section-kicker {
  color: #fff;
  opacity: 0.82;
}

.price-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
  max-width: 690px;
  text-transform: uppercase;
}

.price-cta__decor {
  height: 150px;
  position: relative;
  width: 230px;
  z-index: 1;
}

.price-cta__decor span {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgb(22 20 54 / 20%);
  display: block;
  height: 105px;
  position: absolute;
  width: 145px;
}

.price-cta__decor span::before,
.price-cta__decor span::after {
  background: #d7d4eb;
  content: "";
  height: 4px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 25px;
}

.price-cta__decor span::after {
  box-shadow: 0 14px 0 #e7e5f2, 0 28px 0 #e7e5f2, 0 42px 0 #e7e5f2;
  top: 40px;
}

.price-cta__decor span:nth-child(1) {
  left: 0;
  top: 28px;
  transform: rotate(-14deg);
}

.price-cta__decor span:nth-child(2) {
  right: 0;
  top: 24px;
  transform: rotate(13deg);
}

.price-cta__decor span:nth-child(3) {
  left: 43px;
  top: 0;
}

.home-products {
  background: #fff;
}

.home-products--tint {
  background: var(--ariella-surface);
}

/* WooCommerce product grid */
.woocommerce ul.products,
.home-products ul.products {
  display: grid !important;
  gap: 28px 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.home-products ul.products::before,
.home-products ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.home-products ul.products li.product {
  background: #fff;
  border: 1px solid transparent;
  float: none !important;
  margin: 0 !important;
  padding: 0 0 18px !important;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: auto !important;
}

.woocommerce ul.products li.product:hover,
.home-products ul.products li.product:hover {
  border-color: var(--ariella-border);
  box-shadow: var(--ariella-shadow);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
.home-products ul.products li.product > a.woocommerce-LoopProduct-link {
  display: block;
}

.woocommerce ul.products li.product a img,
.home-products ul.products li.product a img {
  aspect-ratio: 2 / 3;
  background: #f2f1f3;
  margin: 0 0 14px !important;
  object-fit: cover;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.home-products ul.products li.product .woocommerce-loop-product__title {
  color: var(--ariella-ink);
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  min-height: 48px;
  padding: 0 14px 7px !important;
}

.woocommerce ul.products li.product .price,
.home-products ul.products li.product .price {
  color: var(--ariella-accent) !important;
  display: block;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 4px 14px 11px !important;
}

.woocommerce ul.products li.product .price del {
  color: #9d9ba4;
  font-size: 12px;
  opacity: 1;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
.home-products ul.products li.product .button {
  font-size: 11px;
  margin: 5px 14px 0 !important;
  min-height: 38px;
  padding: 9px 16px;
}

.woocommerce ul.products li.product .added_to_cart {
  display: block;
  font-size: 11px;
  margin: 8px 14px 0;
}

.woocommerce span.onsale,
.ariella-product-badge {
  align-items: center;
  background: var(--ariella-accent) !important;
  border-radius: 999px !important;
  color: #fff;
  display: flex;
  font-size: 9px !important;
  font-weight: 600 !important;
  height: auto !important;
  left: 12px !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 7px 11px !important;
  position: absolute;
  right: auto !important;
  text-transform: uppercase;
  top: 12px !important;
  z-index: 5;
}

.woocommerce span.onsale {
  background: var(--ariella-red) !important;
}

.ariella-product-badge--new {
  background: #fff !important;
  border: 1px solid var(--ariella-border);
  color: var(--ariella-accent);
}

.loop-product-material,
.loop-product-sizes {
  color: var(--ariella-muted);
  font-size: 10px;
  line-height: 1.5;
  margin: 0 14px 5px;
}

.loop-product-sizes span {
  color: var(--ariella-ink);
  font-weight: 500;
}

.star-rating {
  color: var(--ariella-gold);
}

.products-empty {
  align-items: center;
  background: var(--ariella-surface);
  color: var(--ariella-muted);
  display: flex;
  gap: 14px;
  grid-column: 1 / -1;
  padding: 24px;
}

.products-empty .ariella-icon {
  color: var(--ariella-accent-light);
  height: 34px;
  width: 34px;
}

.products-empty p {
  margin: 0;
}

/* About, reviews and lower homepage */
.about-home {
  background: #fff;
}

.about-home__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 90px);
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}

.about-home__copy p {
  color: #5f5d68;
  font-size: 15px;
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.check-list .ariella-icon {
  color: var(--ariella-accent);
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.about-home__visual {
  background: linear-gradient(145deg, #ffe6ed, #fff3e5);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.about-home__visual::before {
  border: 1px solid rgb(91 87 150 / 20%);
  border-radius: 50%;
  content: "";
  height: 330px;
  left: -120px;
  position: absolute;
  top: -150px;
  width: 330px;
}

.textile-card {
  background: #fff;
  box-shadow: 0 18px 40px rgb(61 53 79 / 16%);
  height: 250px;
  overflow: hidden;
  position: absolute;
  width: 190px;
}

.textile-card::before {
  background: repeating-linear-gradient(45deg, transparent 0 10px, rgb(255 255 255 / 26%) 10px 12px), linear-gradient(135deg, #d72f63, #ff7954);
  content: "";
  inset: 0;
  position: absolute;
}

.textile-card span {
  border: 2px dashed rgb(255 255 255 / 62%);
  inset: 18px;
  position: absolute;
}

.textile-card--one {
  left: 52px;
  top: 48px;
  transform: rotate(-7deg);
}

.textile-card--two {
  right: 48px;
  top: 58px;
  transform: rotate(7deg);
}

.textile-card--two::before {
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgb(255 255 255 / 28%) 18px 20px), linear-gradient(135deg, #35b7bd, #f3b83f);
}

.about-home__seal {
  align-items: center;
  background: var(--ariella-accent);
  border: 8px solid #fff;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 10px 28px rgb(49 43 91 / 22%);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 124px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 124px;
}

.about-home__seal strong {
  font-size: 30px;
  line-height: 1;
}

.about-home__seal span {
  font-size: 10px;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 62px;
}

.testimonial {
  border: 1px solid color-mix(in srgb, var(--ariella-accent-light) 52%, white);
  min-height: 210px;
  padding: 32px 36px 26px;
  position: relative;
}

.testimonial > .ariella-icon {
  color: var(--ariella-accent-light);
  height: 36px;
  margin-bottom: 16px;
  opacity: 0.65;
  width: 36px;
}

.testimonial p {
  color: #55535e;
  font-size: 14px;
}

.testimonial footer {
  color: var(--ariella-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.categories-home {
  background: var(--ariella-surface);
}

.category-cloud {
  display: grid;
  gap: 14px 18px;
  grid-template-columns: repeat(4, 1fr);
}

.category-cloud a {
  background: #fff;
  border: 1px solid transparent;
  color: #575560;
  font-size: 12px;
  padding: 12px 16px;
  text-align: center;
}

.category-cloud a:hover,
.category-cloud a:focus-visible {
  border-color: var(--ariella-accent-light);
  color: var(--ariella-accent);
}

.workflow {
  background: #fff;
}

.workflow__list {
  border: 1px solid color-mix(in srgb, var(--ariella-accent-light) 38%, white);
  border-radius: 9px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 34px 24px;
}

.workflow__list li {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  position: relative;
  text-align: center;
}

.workflow__list li:not(:last-child)::after {
  border-right: 1px solid #cbc9de;
  border-top: 1px solid #cbc9de;
  content: "";
  height: 8px;
  position: absolute;
  right: -4px;
  top: 16px;
  transform: rotate(45deg);
  width: 8px;
}

.workflow__list span {
  align-items: center;
  border: 1px solid var(--ariella-accent-light);
  border-radius: 50%;
  color: var(--ariella-accent);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  margin-bottom: 14px;
  width: 36px;
}

.workflow__list p {
  color: var(--ariella-muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

.news-home {
  background: var(--ariella-surface);
}

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

.news-card {
  background: #fff;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.news-card:hover {
  box-shadow: var(--ariella-shadow);
  transform: translateY(-3px);
}

.news-card__image {
  background: #ecebf2;
  display: block;
  overflow: hidden;
}

.news-card__image img,
.news-card__placeholder {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.news-card:hover .news-card__image img {
  transform: scale(1.025);
}

.news-card__placeholder {
  align-items: center;
  background: linear-gradient(135deg, #ffe3eb, #fff0dc);
  color: var(--ariella-accent);
  display: flex;
  justify-content: center;
}

.news-card__placeholder .ariella-icon {
  height: 56px;
  opacity: 0.55;
  width: 56px;
}

.news-card__body {
  padding: 22px 24px 26px;
}

.news-card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card h3 a {
  color: var(--ariella-ink);
}

.news-card p {
  color: var(--ariella-muted);
  font-size: 12px;
}

.entry-meta {
  color: #9996a2;
  font-size: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.entry-date {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.entry-date .ariella-icon {
  height: 14px;
  width: 14px;
}

/* Page and blog content */
.page-main,
.woocommerce-main {
  padding-block: 44px 82px;
}

.content-shell--narrow {
  max-width: 930px;
}

.page-header {
  margin-bottom: 34px;
}

.page-header h1 {
  color: var(--ariella-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}

.simple-breadcrumbs,
.woocommerce .woocommerce-breadcrumb {
  align-items: center;
  color: #a09ea8;
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 9px;
  margin: 0 0 28px !important;
}

.simple-breadcrumbs a,
.woocommerce .woocommerce-breadcrumb a {
  color: #777580;
}

.entry-hero {
  margin: 0 0 34px;
}

.entry-hero img {
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.entry-content {
  color: #52505a;
  font-size: 16px;
  line-height: 1.8;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ariella-accent);
  margin-top: 1.6em;
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img {
  border-radius: 2px;
}

.entry-content table th,
.entry-content table td {
  border: 1px solid var(--ariella-border);
  padding: 12px;
}

.post-list {
  display: grid;
  gap: 28px;
}

.post-list-item {
  align-items: center;
  border-bottom: 1px solid var(--ariella-border);
  display: grid;
  gap: 28px;
  grid-template-columns: 260px 1fr;
  padding-bottom: 28px;
}

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

.post-list-item__image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.post-list-item h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.post-list-item h2 a {
  color: var(--ariella-ink);
}

.entry-summary {
  color: var(--ariella-muted);
  font-size: 14px;
}

.nav-links {
  align-items: stretch;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 42px;
}

.nav-links .page-numbers {
  align-items: center;
  border: 1px solid var(--ariella-border);
  color: var(--ariella-accent);
  display: flex;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 10px;
}

.nav-links .current,
.nav-links a:hover {
  background: var(--ariella-accent);
  border-color: var(--ariella-accent);
  color: #fff;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.post-navigation a {
  border: 1px solid var(--ariella-border);
  display: block;
  padding: 18px;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation span,
.post-navigation strong {
  display: block;
}

.post-navigation span {
  color: var(--ariella-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.nothing-found,
.error-page__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-block: 70px;
  text-align: center;
}

.nothing-found > .ariella-icon {
  color: var(--ariella-accent-light);
  height: 54px;
  margin-bottom: 18px;
  width: 54px;
}

.error-page {
  background: linear-gradient(135deg, #fff4f7, #fff4e9);
}

.error-page__code {
  color: var(--ariella-accent-light);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  opacity: 0.28;
}

.error-page__search {
  margin: 20px auto;
  max-width: 520px;
  width: 100%;
}

.error-page__search .product-search {
  border: 1px solid var(--ariella-border);
}

.comments-area {
  border-top: 1px solid var(--ariella-border);
  margin-top: 52px;
  padding-top: 36px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  background: var(--ariella-surface);
  margin-bottom: 16px;
  padding: 20px;
}

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

.comment-form input:not([type="submit"]),
.comment-form textarea {
  border: 1px solid var(--ariella-border);
  padding: 12px;
  width: 100%;
}

/* Catalogue and WooCommerce */
.shop-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 230px minmax(0, 1fr);
}

.shop-layout--single {
  display: block;
}

.shop-filter-toggle {
  display: none;
}

.shop-sidebar {
  position: sticky;
  top: 20px;
}

.shop-widget {
  border-bottom: 1px solid var(--ariella-border);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.shop-widget__title {
  color: var(--ariella-accent);
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.shop-category-widget ul,
.shop-category-widget {
  list-style: none;
}

.shop-category-widget > ul,
.shop-category-widget ul {
  margin: 0;
  padding: 0;
}

.shop-category-widget li {
  margin-bottom: 7px;
}

.shop-category-widget li ul {
  padding: 6px 0 0 14px;
}

.shop-category-widget a {
  color: #56545f;
  font-size: 12px;
}

.shop-category-widget .current-cat > a,
.shop-category-widget a:hover {
  color: var(--ariella-accent);
  font-weight: 600;
}

.shop-sidebar-cta {
  background: linear-gradient(145deg, var(--ariella-accent-light), var(--ariella-accent));
  color: #fff;
  padding: 24px 20px;
}

.shop-sidebar-cta .section-kicker,
.shop-sidebar-cta h2 {
  color: #fff;
}

.shop-sidebar-cta h2 {
  font-size: 18px;
}

.shop-content {
  min-width: 0;
}

.shop-content .woocommerce-products-header__title,
.shop-content .product_title {
  color: var(--ariella-accent);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  text-transform: uppercase;
}

.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.catalog-chips a {
  border: 1px solid color-mix(in srgb, var(--ariella-accent-light) 60%, white);
  border-radius: 999px;
  color: var(--ariella-accent);
  font-size: 11px;
  padding: 6px 15px;
}

.catalog-chips a:hover {
  background: var(--ariella-accent);
  border-color: var(--ariella-accent);
  color: #fff;
}

.shop-layout .woocommerce ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--ariella-muted);
  float: none;
  font-size: 11px;
  margin: 0 0 24px;
}

.woocommerce .woocommerce-ordering {
  margin-left: auto;
}

.woocommerce .woocommerce-ordering select {
  background: #fff;
  border: 1px solid var(--ariella-border);
  color: var(--ariella-ink);
  min-height: 42px;
  padding: 0 36px 0 12px;
}

.woocommerce .woocommerce-notices-wrapper + .woocommerce-result-count {
  display: inline-block;
}

.woocommerce .woocommerce-pagination ul.page-numbers {
  border: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.woocommerce .woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li a,
.woocommerce .woocommerce-pagination ul.page-numbers li span {
  align-items: center;
  border: 1px solid var(--ariella-border);
  display: flex;
  height: 40px;
  justify-content: center;
  min-width: 40px;
}

.woocommerce .woocommerce-pagination ul.page-numbers li span.current,
.woocommerce .woocommerce-pagination ul.page-numbers li a:hover {
  background: var(--ariella-accent);
  color: #fff;
}

/* Product page */
.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 60px;
}

.woocommerce div.product div.images {
  width: 46%;
}

.woocommerce div.product div.summary {
  width: 49%;
}

.woocommerce div.product div.images img {
  background: #f2f1f3;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  float: none;
  width: auto;
}

.woocommerce div.product .product_title {
  color: var(--ariella-accent);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.2;
  text-transform: none;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ariella-accent);
  font-size: 24px;
  font-weight: 600;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--ariella-muted);
  font-size: 14px;
}

.woocommerce div.product form.cart {
  align-items: stretch;
  border-bottom: 1px solid var(--ariella-border);
  border-top: 1px solid var(--ariella-border);
  display: flex;
  gap: 12px;
  margin-block: 28px;
  padding-block: 22px;
}

.woocommerce .quantity {
  align-items: center;
  border: 1px solid var(--ariella-border);
  display: inline-flex;
  float: none !important;
}

.woocommerce .quantity .qty {
  border: 0;
  height: 44px;
  width: 52px;
}

.qty-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ariella-accent);
  display: flex;
  font-size: 20px;
  height: 44px;
  justify-content: center;
  width: 36px;
}

.woocommerce div.product .product_meta {
  color: var(--ariella-muted);
  display: grid;
  font-size: 12px;
  gap: 8px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 30px;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom-color: var(--ariella-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0 24px 0 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ariella-muted);
  padding: 13px 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-bottom: 2px solid var(--ariella-accent);
  color: var(--ariella-accent);
}

.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  clear: both;
  padding-top: 60px;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
  color: var(--ariella-accent);
  font-size: 26px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  border-bottom: 1px solid var(--ariella-border);
  padding: 10px 12px;
}

/* Cart, checkout and account */
.woocommerce table.shop_table {
  border-color: var(--ariella-border);
  border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--ariella-border);
  padding: 14px;
}

.woocommerce-cart table.cart img {
  width: 82px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-form-login,
.woocommerce-form-register {
  background: var(--ariella-surface);
  padding: 28px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  background: #fff;
  border: 1px solid var(--ariella-border);
  border-radius: 2px;
  min-height: 45px;
  padding: 10px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 24px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  background: var(--ariella-surface);
  border-top-color: var(--ariella-accent);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--ariella-accent);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li a {
  border-bottom: 1px solid var(--ariella-border);
  display: block;
  padding: 10px 0;
}

/* Footer */
.site-footer {
  background: linear-gradient(125deg, #7d1237, var(--ariella-accent) 58%, #db3e55);
  color: rgb(255 255 255 / 78%);
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr 1.15fr 1.2fr;
}

.footer-column h2 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.footer-menu li {
  margin-bottom: 6px;
}

.footer-menu a,
.footer-menu button {
  background: transparent;
  border: 0;
  color: rgb(255 255 255 / 74%);
  font-size: 11px;
  line-height: 1.55;
  padding: 0;
  text-align: left;
}

.footer-menu a:hover,
.footer-menu button:hover {
  color: #fff;
}

.footer-column .menu + .footer-menu--fallback:not(:only-child) {
  margin-top: 6px;
}

.footer-contacts > a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 12px;
  gap: 8px;
  margin-bottom: 9px;
}

.footer-contacts > a .ariella-icon {
  height: 17px;
  width: 17px;
}

.footer-contacts p {
  font-size: 11px;
  margin-bottom: 10px;
}

.footer-hours strong {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.footer-socials a {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 9px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.footer-socials .ariella-icon {
  height: 18px;
  width: 18px;
}

.footer-bottom {
  align-items: flex-end;
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  font-size: 9px;
  gap: 24px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgb(255 255 255 / 70%);
}

/* Dialog, cookie and status */
.callback-dialog {
  background: #fff;
  border: 0;
  box-shadow: 0 20px 80px rgb(24 20 44 / 30%);
  color: var(--ariella-ink);
  max-width: 510px;
  padding: 0;
  width: calc(100% - 30px);
}

.callback-dialog::backdrop {
  background: rgb(24 22 38 / 58%);
  backdrop-filter: blur(2px);
}

.callback-form {
  padding: 40px;
  position: relative;
}

.callback-form h2 {
  color: var(--ariella-accent);
  margin-bottom: 10px;
}

.callback-form > p:not(.section-kicker) {
  color: var(--ariella-muted);
  font-size: 13px;
}

.callback-form > label:not(.form-consent, .form-honeypot) {
  display: block;
  margin-bottom: 13px;
}

.callback-form label > span:first-child {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
}

.callback-form input:not([type="checkbox"]),
.callback-form textarea {
  border: 1px solid var(--ariella-border);
  color: var(--ariella-ink);
  padding: 11px 12px;
  resize: vertical;
  width: 100%;
}

.dialog-close {
  background: transparent;
  border: 0;
  color: var(--ariella-ink);
  padding: 8px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.form-honeypot {
  left: -10000px;
  position: absolute;
}

.form-consent {
  align-items: flex-start;
  color: var(--ariella-muted);
  display: flex;
  font-size: 9px;
  gap: 8px;
  line-height: 1.5;
  margin: 15px 0;
}

.form-consent input {
  margin-top: 2px;
}

.form-consent span:first-child {
  display: inline;
  font-size: inherit;
  font-weight: 400;
  margin: 0;
}

.cookie-notice {
  align-items: center;
  background: #302f36;
  bottom: 14px;
  box-shadow: 0 8px 28px rgb(0 0 0 / 24%);
  color: #fff;
  display: flex;
  font-size: 10px;
  gap: 13px;
  left: 14px;
  max-width: 410px;
  padding: 11px 12px 11px 16px;
  position: fixed;
  z-index: 900;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
}

.cookie-notice a {
  color: #d6d2ff;
  text-decoration: underline;
}

.cookie-notice button {
  background: rgb(255 255 255 / 16%);
  border: 0;
  color: #fff;
  font-size: 9px;
  padding: 7px 9px;
}

.whatsapp-float {
  align-items: center;
  background: #16b879;
  border-radius: 50%;
  bottom: 20px;
  box-shadow: 0 8px 24px rgb(16 119 78 / 28%);
  color: #fff;
  display: flex;
  height: 52px;
  justify-content: center;
  position: fixed;
  right: 20px;
  width: 52px;
  z-index: 800;
}

.whatsapp-float:hover {
  background: #0e9862;
  color: #fff;
}

.whatsapp-float .ariella-icon {
  height: 28px;
  width: 28px;
}

.site-toast {
  align-items: center;
  background: var(--ariella-ink);
  bottom: 24px;
  box-shadow: var(--ariella-shadow);
  color: #fff;
  display: flex;
  font-size: 13px;
  gap: 10px;
  left: 50%;
  max-width: calc(100% - 30px);
  padding: 14px 20px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 1100;
}

.site-toast--success {
  background: var(--ariella-success);
}

.site-toast--error {
  background: var(--ariella-danger);
}

.site-toast .ariella-icon {
  height: 20px;
  width: 20px;
}

/* WordPress alignment helpers */
.alignwide {
  margin-left: 50%;
  max-width: var(--ariella-container);
  transform: translateX(-50%);
  width: calc(100vw - 30px);
}

.alignfull {
  margin-left: 50%;
  max-width: none;
  transform: translateX(-50%);
  width: 100vw;
}

.wp-caption,
.gallery-caption {
  color: var(--ariella-muted);
  font-size: 12px;
}

.sticky {
  position: relative;
}

.bypostauthor {
  display: block;
}

/* Responsive */
@media (max-width: 1199px) {
  .header-top__inner {
    gap: 15px;
  }

  .site-branding__tagline {
    display: none;
  }

  .brand-fallback__crop {
    width: 165px;
  }

  .primary-navigation > ul {
    gap: 11px;
  }

  .primary-navigation a {
    font-size: 10px;
  }

  .header-service__inner {
    gap: 14px;
    grid-template-columns: 130px minmax(240px, 1fr) 160px auto;
  }

  .header-actions {
    gap: 8px;
  }

  .hero,
  .hero__inner {
    min-height: 360px;
  }

  .price-cta__decor {
    width: 200px;
  }
}

@media (max-width: 991px) {
  .primary-navigation,
  .header-phone,
  .price-button,
  .header-action:not(.header-action--cart) {
    display: none;
  }

  .mobile-menu,
  .mobile-menu-overlay:not([hidden]) {
    display: block;
  }

  .header-top__inner {
    justify-content: center;
    min-height: 61px;
  }

  .site-branding__tagline {
    display: block;
  }

  .header-service__inner {
    gap: 12px;
    grid-template-columns: 120px minmax(0, 1fr) 44px;
    min-height: 66px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-action--cart {
    min-width: 36px;
  }

  .header-action--cart > span:last-child {
    display: none;
  }

  .category-menu__list {
    gap: 12px;
  }

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

  .price-cta__content {
    max-width: 70%;
  }

  .price-cta__decor {
    transform: scale(0.8);
    transform-origin: center right;
  }

  .woocommerce ul.products,
  .home-products ul.products,
  .shop-layout .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-home__grid {
    gap: 40px;
  }

  .textile-card {
    width: 160px;
  }

  .textile-card--one {
    left: 30px;
  }

  .textile-card--two {
    right: 30px;
  }

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

  .workflow__list {
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    padding-inline: 10px;
  }

  .workflow__list li {
    padding-inline: 8px;
  }

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

  .shop-layout {
    gap: 28px;
    grid-template-columns: 205px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    font-size: 14px;
  }

  .section-space {
    padding-block: 56px;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .header-top__inner {
    justify-content: flex-start;
    min-height: 72px;
    min-width: 0;
  }

  .site-branding {
    gap: 8px;
    justify-content: space-between;
    min-width: 0;
    width: 100%;
  }

  .brand-fallback__crop {
    height: 50px;
    width: 160px;
  }

  .brand-fallback__crop img {
    left: -6px;
    top: -19px;
    width: 176px;
  }

  .site-branding__tagline {
    flex: 0 1 145px;
    font-size: 9px;
    max-width: 145px;
    min-width: 0;
  }

  .header-service__inner {
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    min-width: 0;
  }

  .product-search,
  .header-search,
  .category-menu .site-container,
  .category-menu__list,
  .category-menu__list li {
    min-width: 0;
  }

  .catalog-toggle {
    min-height: 42px;
    padding: 0;
  }

  .catalog-toggle span {
    display: none;
  }

  .catalog-toggle .ariella-icon {
    height: 22px;
    width: 22px;
  }

  .product-search input[type="search"],
  .product-search button {
    height: 42px;
  }

  .category-menu {
    padding-block: 8px;
  }

  .category-menu__list {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .category-menu__list li:nth-child(3) {
    grid-column: 1 / -1;
  }

  .category-menu__list a {
    font-size: 10px;
    overflow-wrap: anywhere;
    padding: 9px 8px;
  }

  .hero,
  .hero__inner {
    min-height: 360px;
  }

  .hero {
    background-position: 22% center;
    background-size: auto 100%;
    position: relative;
  }

  .hero::after {
    background: linear-gradient(180deg, transparent 25%, rgb(255 250 246 / 92%) 72%, #fffaf6 100%);
    content: "";
    inset: 0;
    position: absolute;
  }

  .hero__inner {
    align-items: flex-end;
    position: relative;
    z-index: 1;
  }

  .hero__content {
    max-width: 100%;
    min-width: 0;
    padding: 25px 15px 28px;
    width: 100%;
  }

  .hero h1 {
    font-size: 2.35rem;
    margin-bottom: 10px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__content > p:not(.hero__eyebrow) {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .hero .button {
    min-height: 40px;
    padding: 10px 17px;
  }

  .benefits {
    padding-block: 38px;
  }

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

  .benefit p {
    font-size: 9px;
  }

  .minimum-order p {
    font-size: 12px;
    padding: 20px 16px;
  }

  .price-cta {
    min-height: 230px;
    padding: 32px 24px;
  }

  .price-cta__content {
    max-width: 100%;
  }

  .price-cta h2 {
    font-size: 1.35rem;
  }

  .price-cta__decor {
    display: none;
  }

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

  .about-home__visual {
    min-height: 330px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

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

  .workflow__list {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 10px 22px;
  }

  .workflow__list li {
    align-items: center;
    border-bottom: 1px solid var(--ariella-border);
    display: grid;
    gap: 15px;
    grid-template-columns: 40px 1fr;
    padding: 16px 0;
    text-align: left;
  }

  .workflow__list li:last-child {
    border-bottom: 0;
  }

  .workflow__list li::after {
    display: none;
  }

  .workflow__list span {
    margin: 0;
  }

  .news-grid {
    display: flex;
    margin-inline: -15px;
    overflow-x: auto;
    padding: 0 15px 12px;
    scroll-snap-type: x mandatory;
  }

  .news-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .page-main,
  .woocommerce-main {
    padding-block: 28px 58px;
  }

  .entry-content {
    font-size: 15px;
  }

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

  .shop-layout {
    display: block;
  }

  .shop-filter-toggle {
    align-items: center;
    background: var(--ariella-accent);
    border: 0;
    color: #fff;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 11px 14px;
    width: 100%;
  }

  .shop-filter-toggle .ariella-icon {
    height: 18px;
    transform: rotate(90deg);
    transition: transform 180ms ease;
    width: 18px;
  }

  .shop-filter-toggle[aria-expanded="true"] .ariella-icon {
    transform: rotate(-90deg);
  }

  .shop-sidebar {
    background: var(--ariella-surface);
    display: none;
    margin-bottom: 28px;
    padding: 22px;
    position: static;
  }

  .shop-sidebar.is-open {
    display: block;
  }

  .shop-content .woocommerce-products-header__title,
  .shop-content .product_title {
    font-size: 1.7rem;
  }

  .catalog-chips {
    gap: 6px;
  }

  .catalog-chips a {
    font-size: 10px;
    padding: 5px 11px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none;
    width: 100%;
  }

  .woocommerce div.product form.cart {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1 1 180px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    flex: 0 0 auto;
    margin: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 575px) {
  .site-branding {
    justify-content: center;
  }

  .site-branding__tagline {
    display: none;
  }

  .header-service__inner {
    padding-inline: 8px;
  }

  .header-search input {
    font-size: 11px !important;
    padding-left: 11px !important;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .section-heading {
    gap: 14px;
  }

  .section-link {
    font-size: 10px;
    white-space: nowrap;
  }

  .woocommerce ul.products,
  .home-products ul.products,
  .shop-layout .woocommerce ul.products {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product,
  .home-products ul.products li.product {
    margin-inline: auto !important;
    max-width: 400px;
    width: 100% !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .home-products ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px !important;
    min-height: 0;
  }

  .about-home__visual {
    min-height: 300px;
  }

  .textile-card {
    height: 210px;
    width: 145px;
  }

  .textile-card--one {
    left: 24px;
    top: 44px;
  }

  .textile-card--two {
    right: 24px;
    top: 52px;
  }

  .about-home__seal {
    height: 104px;
    width: 104px;
  }

  .testimonial {
    padding: 26px 24px;
  }

  .category-cloud {
    gap: 8px;
  }

  .category-cloud a {
    font-size: 10px;
    padding: 10px 8px;
  }

  .footer-grid {
    gap: 30px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-menu button {
    text-align: center;
  }

  .footer-contacts > a,
  .footer-socials {
    justify-content: center;
  }

  .footer-bottom,
  .footer-legal {
    align-items: center;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .callback-form {
    padding: 34px 22px 24px;
  }

  .cookie-notice {
    bottom: 8px;
    left: 8px;
    max-width: calc(100% - 72px);
  }

  .whatsapp-float {
    bottom: 12px;
    height: 46px;
    right: 10px;
    width: 46px;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
