/* Artea Figma header: flatsome-child */

:root {
  --artea-dark: #212121;
  --artea-darker: #1a1a1a;
  --artea-orange: #eb933a;
  --artea-orange-hover: #d4832e;
  --artea-text: #212121;
  --artea-muted: #888;
  --artea-border: #eee;
  --artea-font: "Outfit", system-ui, sans-serif;
  --artea-max: 1400px;
  --artea-pad: 1.5rem;
}

/* Kill Flatsome sticky/chrome on #header; we control stickiness in JS.
   IMPORTANT: do NOT force position:relative on #header when .is-stuck (breaks fixed). */
.artea-figma-header #header.header:not(.is-stuck),
.artea-figma-header #header.sticky:not(.is-stuck),
.artea-figma-header #header.stuck:not(.is-stuck),
.artea-figma-header .header-wrapper,
.artea-figma-header .header-wrapper.stuck {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
  min-height: 0 !important;
  height: auto !important;
}

.artea-figma-header #header .header-bg-color,
.artea-figma-header #header .header-bg-image,
.artea-figma-header #header .header-top,
.artea-figma-header #header .header-bottom,
.artea-figma-header #header .header-main {
  display: none !important;
}

.artea-site-header {
  font-family: var(--artea-font);
  position: relative;
  z-index: 100;
  width: 100%;
}

.artea-container {
  box-sizing: border-box;
  max-width: var(--artea-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--artea-pad);
  padding-right: var(--artea-pad);
  width: 100%;
}

/* â”€â”€ Top bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.artea-top-bar {
  background: var(--artea-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  width: 100%;
}

.artea-top-bar__locations-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.artea-top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.artea-top-bar__info-row {
  display: flex;
  width: 100%;
}

.artea-top-bar__info-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.artea-top-bar__info-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.artea-top-bar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.artea-top-bar__shipping {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.03em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.artea-top-bar__shipping .artea-icon {
  color: var(--artea-orange);
}

.artea-top-bar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 850px) {
  .artea-top-bar__right {
    width: auto;
    justify-content: flex-end;
  }
}

.artea-top-bar__sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0.15rem;
}

.artea-top-bar__login {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 300;
  transition: color 0.15s;
}

.artea-top-bar__login:hover {
  color: #fff;
}

.artea-top-bar__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.artea-social-link {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  transition: color 0.15s;
}

.artea-social-link:hover {
  color: var(--artea-orange);
}

.artea-locations {
  position: relative;
}

.artea-locations__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.15rem 0;
}

.artea-locations__toggle .artea-icon-pin,
.artea-locations__toggle .artea-icon-chev {
  color: var(--artea-orange);
}

.artea-locations__toggle .artea-icon-chev {
  transition: transform 0.2s;
}

.artea-locations.is-open .artea-locations__toggle .artea-icon-chev {
  transform: rotate(180deg);
}

.artea-locations__toggle:hover {
  color: var(--artea-orange);
}

.artea-locations__menu {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 4px);
  min-width: 140px;
  background: var(--artea-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  z-index: 120;
}

@media (min-width: 850px) {
  .artea-locations__menu {
    left: auto;
    right: 0;
  }
}

.artea-locations__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.artea-locations__list a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}

.artea-locations__list a:hover {
  color: var(--artea-orange);
}

.artea-fixed-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.artea-fixed-links__list li {
  display: flex;
  align-items: center;
}

.artea-fixed-links__list li + li::before {
  content: "\00B7";
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.4rem;
}

.artea-fixed-links__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.artea-fixed-links__list a:hover {
  color: var(--artea-orange);
}

/* Sticky shell: JS toggles .is-stuck to position fixed */

.artea-header-sticky {
  position: relative;
  z-index: 110;
  background: #fff;
  border-bottom: 1px solid var(--artea-border);
  width: 100%;
}

.artea-figma-header #header.artea-header-sticky.is-stuck,
.artea-figma-header #header.header.artea-header-sticky.is-stuck {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9990 !important;
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  transform: none !important;
  height: auto !important;
  min-height: 0 !important;
}

.artea-sticky-spacer {
  display: block;
  width: 100%;
  pointer-events: none;
  background: transparent;
}

.artea-sticky-spacer[hidden] {
  display: none !important;
  height: 0 !important;
}

/* ── Main row ────────────────────────────────────────── */

.artea-main-row {
  background: #fff;
  width: 100%;
}

.artea-main-row__desktop {
  display: grid !important;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  column-gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  box-sizing: border-box;
  width: 100%;
}

.artea-main-row__logo {
  justify-self: start;
}

.artea-main-row__logo a,
.artea-main-row__logo .header-logo {
  display: inline-flex;
  line-height: 1;
}

.artea-main-row__logo img,
.artea-main-row__logo .header-logo img,
.artea-main-row__logo .custom-logo {
  max-height: 62px !important;
  width: auto !important;
  display: block;
}

.artea-main-row__search {
  justify-self: stretch;
  width: 100%;
  max-width: 600px;
  min-width: 0;
  margin: 0 auto;
  display: block !important;
}

.artea-main-row__actions {
  justify-self: end;
}

.artea-figma-header .artea-search-form {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  width: 100% !important;
  min-height: 44px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.artea-figma-header .artea-search-form:focus-within {
  border-color: var(--artea-orange) !important;
  box-shadow: 0 0 0 3px rgba(235, 147, 58, 0.15) !important;
}

.artea-figma-header .artea-search-form__input,
.artea-figma-header .artea-search-form input[type="text"],
.artea-figma-header .artea-search-form input[type="search"] {
  flex: 1 1 auto !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 44px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.65rem 1rem !important;
  margin: 0 !important;
  font-family: var(--artea-font) !important;
  font-size: 14px !important;
  color: var(--artea-text) !important;
  background: #fff !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  position: static !important;
}

.artea-figma-header .artea-search-form__input::placeholder {
  color: #aaa !important;
  opacity: 1 !important;
}

.artea-figma-header .artea-search-form__btn,
.artea-figma-header .artea-search-form button[type="submit"] {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--artea-orange) !important;
  color: #fff !important;
  font-family: var(--artea-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 0 1.25rem !important;
  margin: 0 !important;
  height: 44px !important;
  min-width: 110px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.artea-figma-header .artea-search-form__btn:hover {
  background: var(--artea-orange-hover) !important;
  color: #fff !important;
}

.artea-figma-header .artea-search-form__btn .artea-icon,
.artea-figma-header .artea-search-form__btn svg {
  color: #fff !important;
  stroke: #fff !important;
}

.artea-figma-header .artea-search-form__btn span {
  color: #fff !important;
}

.artea-header-icons {
  display: flex !important;
  align-items: center;
  gap: 0.15rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.artea-action {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  position: relative;
}

.artea-action__link {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.5rem 0.75rem;
  color: var(--artea-text) !important;
  text-decoration: none !important;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.artea-action__link:hover {
  background: #f5f5f5;
  color: var(--artea-orange) !important;
}

.artea-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 22px;
  height: 22px;
  color: inherit;
}

.artea-action__icon svg {
  display: block;
}

.artea-action__label {
  font-family: var(--artea-font);
  font-size: 10px;
  font-weight: 400;
  color: #888;
  line-height: 1;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.artea-action__link:hover .artea-action__label {
  color: var(--artea-orange);
}

.artea-action__icon--cart .artea-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--artea-orange);
  color: #fff;
  border-radius: 999px;
  font-family: var(--artea-font);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.artea-action .nav-dropdown {
  display: none;
}

.artea-action.has-dropdown:hover > .nav-dropdown,
.artea-action.has-dropdown:focus-within > .nav-dropdown {
  display: block;
}

/* Mobile main row */
.artea-main-row__mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0 0.35rem;
  min-height: 0;
}

.artea-main-row__mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 1 1 auto;
}

.artea-main-row__mobile-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.artea-main-row__mobile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.artea-menu-toggle {
  background: none;
  border: 0;
  padding: 0.35rem;
  margin: 0;
  cursor: pointer;
  color: var(--artea-text);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.artea-menu-toggle:hover {
  background: #f5f5f5;
}

.artea-main-row__mobile-search {
  display: none;
  padding-top: 0;
  padding-bottom: 0.75rem;
  /* keep .artea-container horizontal padding */
}

.artea-figma-header .artea-search-form.artea-search-form--mobile {
  background: #f8f8f8 !important;
  border-color: var(--artea-border) !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0 0.85rem !important;
  min-height: 44px !important;
  overflow: hidden !important;
}

.artea-figma-header .artea-search-form--mobile .artea-icon,
.artea-figma-header .artea-search-form--mobile svg.artea-icon {
  flex: 0 0 auto !important;
  align-self: center !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  margin: 0 !important;
  color: #bbb !important;
  stroke: #bbb !important;
  display: block !important;
}

.artea-figma-header .artea-search-form--mobile .artea-search-form__input,
.artea-figma-header .artea-search-form--mobile input[type="text"],
.artea-figma-header .artea-search-form--mobile input[type="search"] {
  padding: 0.6rem 0 !important;
  height: 44px !important;
  background: transparent !important;
}

/* â”€â”€ Main nav + mega â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.artea-main-nav {
  position: relative;
  background: var(--artea-dark);
  z-index: 30;
}

.artea-promo-strip {
  background: var(--artea-darker);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.artea-promo-strip__inner {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.artea-main-nav > .artea-container {
  padding-top: 0;
  padding-bottom: 0;
}

.artea-promo-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.artea-promo-strip__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.15s;
}

.artea-promo-strip__list a:hover {
  color: var(--artea-orange);
}

.artea-promo-strip__list .artea-icon {
  color: var(--artea-orange);
}

.artea-cat-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.artea-cat-nav__item {
  position: static;
  flex: 1;
  text-align: center;
}

.artea-cat-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 100%;
  padding: 0.65rem 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.artea-cat-nav__link .artea-icon-chev {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s, color 0.2s;
}

.artea-cat-nav__item.is-open > .artea-cat-nav__link,
.artea-cat-nav__item:hover > .artea-cat-nav__link {
  color: #fff;
  background: rgba(235, 147, 58, 0.15);
}

.artea-cat-nav__item.is-open > .artea-cat-nav__link .artea-icon-chev,
.artea-cat-nav__item:hover > .artea-cat-nav__link .artea-icon-chev {
  color: var(--artea-orange);
  transform: rotate(180deg);
}

.artea-cat-nav__item.is-open > .artea-cat-nav__link::after,
.artea-cat-nav__item:hover > .artea-cat-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--artea-orange);
}

.artea-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 3px solid var(--artea-orange);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 40;
  animation: arteaSlideDown 0.16s ease-out;
}

.artea-mega[hidden] {
  display: none !important;
}

.artea-mega__inner {
  padding: 1rem 1.5rem 1.25rem;
}

.artea-mega__cols {
  display: flex;
  gap: 3rem;
}

.artea-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 200px;
}

.artea-mega__list a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.artea-mega__list a .artea-icon {
  color: #ccc;
  transition: color 0.15s;
}

.artea-mega__list a:hover {
  color: var(--artea-orange);
}

.artea-mega__list a:hover .artea-icon {
  color: var(--artea-orange);
}

.artea-mega__all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--artea-border);
  color: var(--artea-orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.artea-mega__all:hover {
  opacity: 0.85;
}

@keyframes arteaSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ Mobile drawer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.artea-drawer[hidden] {
  display: none !important;
}

.artea-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
}

.artea-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.artea-drawer__panel {
  position: relative;
  width: 340px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  font-family: var(--artea-font);
  animation: arteaDrawerIn 0.2s ease-out;
}

@keyframes arteaDrawerIn {
  from {
    transform: translateX(-12px);
    opacity: 0.6;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.artea-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--artea-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.artea-drawer__logo {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.artea-drawer__logo a,
.artea-drawer__logo .header-logo,
.artea-drawer__logo .logo {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
  max-width: 100%;
}

.artea-drawer__logo img,
.artea-drawer__logo .header-logo img,
.artea-drawer__logo .custom-logo,
.artea-drawer__logo .logo-img,
.artea-figma-header .artea-drawer__logo img {
  max-height: 34px !important;
  width: auto !important;
  height: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  object-position: left center !important;
  flex: none !important;
  transform: none !important;
}

.artea-drawer__close {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--artea-text);
  border-radius: 4px;
  flex-shrink: 0;
}

.artea-drawer__close:hover {
  background: #f5f5f5;
}

.artea-drawer__shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: var(--artea-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 300;
}

.artea-drawer__shipping .artea-icon {
  color: var(--artea-orange);
}

.artea-drawer__search {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.artea-search-form--drawer {
  background: #f8f8f8;
  border-color: var(--artea-border);
  box-shadow: none;
  padding: 0 0.85rem;
  align-items: center;
  gap: 0.5rem;
}

.artea-search-form--drawer .artea-icon {
  color: #bbb;
}

.artea-search-form--drawer input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0.65rem 0;
  font-family: var(--artea-font);
  font-size: 14px;
}

.artea-drawer__cats {
  flex: 1;
  padding: 0.25rem 0;
}

.artea-drawer-cat {
  border-bottom: 1px solid #f5f5f5;
}

.artea-drawer-cat__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  background: none;
  border: 0;
  font-family: var(--artea-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--artea-text);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.artea-drawer-cat__toggle:hover {
  background: #fafafa;
}

.artea-drawer-cat__toggle .artea-icon-chev {
  color: #bbb;
  transition: transform 0.2s;
}

.artea-drawer-cat.is-open .artea-drawer-cat__toggle .artea-icon-chev {
  transform: rotate(180deg);
}

.artea-drawer-cat__panel {
  background: #fafafa;
  padding: 0.5rem 1.25rem 0.75rem;
}

.artea-drawer-cat__panel[hidden] {
  display: none !important;
}

.artea-drawer-cat__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.artea-drawer-cat__link:hover {
  color: var(--artea-orange);
}

.artea-drawer-cat__link .artea-icon {
  color: #ddd;
}

.artea-drawer-cat__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--artea-border);
  color: var(--artea-orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.artea-drawer__promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid #f0f0f0;
}

.artea-drawer__promos a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  background: var(--artea-dark);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.artea-drawer__promos .artea-icon {
  color: var(--artea-orange);
}

/* Desktop / mobile visibility (do not rely on Flatsome hide-for-*) */
.artea-mobile-only {
  display: none !important;
}

.artea-desktop-only {
  display: flex !important;
}

.artea-main-row__desktop.artea-desktop-only {
  display: grid !important;
}

.artea-main-nav.artea-desktop-only {
  display: block !important;
}

@media (max-width: 849px) {
  /* Match or beat desktop !important specificity so these actually hide */
  .artea-desktop-only,
  .artea-main-row__desktop.artea-desktop-only,
  .artea-main-nav.artea-desktop-only,
  .artea-top-bar__left.artea-desktop-only,
  .artea-top-bar__info-row.artea-desktop-only,
  .artea-top-bar__sep.artea-desktop-only {
    display: none !important;
  }

  .artea-mobile-only {
    display: flex !important;
  }

  .artea-main-row__mobile-search.artea-mobile-only {
    display: block !important;
    padding-top: 0 !important;
    padding-bottom: 0.55rem !important;
    padding-left: var(--artea-pad) !important;
    padding-right: var(--artea-pad) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: var(--artea-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .artea-main-row__mobile.artea-container,
  .artea-top-bar__inner.artea-container {
    padding-left: var(--artea-pad) !important;
    padding-right: var(--artea-pad) !important;
  }

  .artea-main-row__mobile {
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 0.45rem !important;
    padding-bottom: 0.35rem !important;
    min-height: 48px;
  }

  .artea-main-row__mobile-brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
  }

  .artea-menu-toggle {
    width: 36px;
    height: 36px;
    padding: 0 !important;
  }

  .artea-main-row__mobile-actions {
    display: flex !important;
    align-items: center !important;
    height: 36px;
  }

  .artea-main-row__mobile-actions .artea-header-icons,
  .artea-main-row__mobile-actions .artea-action__link {
    align-items: center !important;
  }

  .artea-main-row__mobile-logo a,
  .artea-main-row__mobile-logo .header-logo,
  .artea-main-row__mobile-logo .logo,
  .artea-main-row__mobile-logo .logo-link,
  .artea-figma-header .artea-main-row__mobile .header-logo a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    line-height: 0 !important;
  }

  /* Keep real logo proportions (no stretch from Flatsome width/height attrs) */
  .artea-main-row__mobile-logo img,
  .artea-main-row__mobile-logo .header-logo img,
  .artea-main-row__mobile-logo .custom-logo,
  .artea-main-row__mobile-logo .logo-img,
  .artea-figma-header .artea-main-row__mobile img,
  .artea-figma-header .artea-main-row__mobile img.header_logo,
  .artea-figma-header .artea-main-row__mobile img.header-logo-dark,
  .artea-figma-header .artea-main-row__mobile .header-logo-dark,
  .artea-figma-header .artea-main-row__mobile .header-logo-dark img {
    max-height: 34px !important;
    width: auto !important;
    height: auto !important;
    max-width: min(130px, 38vw) !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
    flex: none !important;
    transform: none !important;
  }

  .artea-main-row__mobile-actions .artea-action__label {
    display: none !important;
  }

  .artea-figma-header .artea-search-form.artea-search-form--mobile {
    min-height: 40px !important;
  }

  .artea-header-icons {
    gap: 0.15rem;
  }

  :root {
    --artea-pad: 1rem;
  }
}

@media (min-width: 850px) {
  .artea-drawer {
    display: none !important;
  }
}

body.artea-drawer-open {
  overflow: hidden;
}

.artea-figma-header #header {
  border: 0;
}