/* AsanWP Market core: design system, header, shared components, pages and footer. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--awp-bg);
  color: var(--awp-ink);
  font-family: var(--awp-font);
  font-size: var(--awp-base-font-size);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

button,input,select,textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.awp-container {
  width: 100%;
  max-width: var(--awp-container-max);
  margin-inline: auto;
  padding-inline: var(--awp-gutter);
}

.awp-site-content {
  min-height: 55vh;
}

.awp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8a7000;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.awp-btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s;
}

.awp-btn svg {
  width: 17px;
}

.awp-btn-primary {
  background: var(--awp-primary);
  color: #171717;
}

.awp-btn-primary:hover {
  background: #f1c000;
  transform: translateY(-1px);
}

.awp-btn-secondary {
  background: #fff;
  border-color: var(--awp-border);
  color: var(--awp-ink);
}

.awp-btn-secondary:hover {
  border-color: #c8cbd0;
  background: #fafafa;
}

.awp-btn-light {
  background: #fff;
  color: #15171a;
}

.awp-btn-link {
  background: transparent;
  color: var(--awp-ink);
  border: 0;
}

.awp-section {
  padding: 64px 0;
}

.awp-section-soft {
  background: #f1f2f4;
  border-block: 1px solid var(--awp-border);
}

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

.awp-section-head h2 {
  font-size: 30px;
  line-height: 1.4;
  margin: 4px 0 3px;
  letter-spacing: -.02em;
}

.awp-section-head p {
  margin: 3px 0 0;
  color: var(--awp-muted);
  font-size: 13px;
}

.awp-section-head-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.awp-section-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #51555c;
}

.awp-section-link svg {
  width: 17px;
  transition: .2s;
}

.awp-section-link:hover svg {
  transform: translateX(-3px);
}

.awp-site-header {
  background: #fff;
  border-bottom: 1px solid var(--awp-border);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(17,19,24,.025);
}

.awp-sticky-header .awp-site-header {
  position: sticky;
  top: 0;
}

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

.awp-header-main {
  background: var(--awp-header-bg);
  border-bottom: 1px solid #f0f1f2;
}

.awp-header-main-inner {
  min-height: var(--awp-header-main-height);
  display: grid;
  grid-template-columns: 230px minmax(320px,1fr) auto;
  grid-template-areas: "brand search actions";
  gap: 30px;
  align-items: center;
}
.awp-header-main-inner.awp-header-without-search{grid-template-columns:230px minmax(0,1fr);grid-template-areas:"brand actions"}
.awp-header-main-inner.awp-header-without-actions{grid-template-columns:230px minmax(320px,1fr);grid-template-areas:"brand search"}
.awp-header-main-inner.awp-header-without-search.awp-header-without-actions{grid-template-columns:1fr;grid-template-areas:"brand"}

.awp-brand {
  grid-area: brand;
  min-width: 0;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  width: var(--awp-header-logo-width);
  max-width: 100%;
}

.awp-header-logo-link{display:inline-flex;align-items:center;width:var(--awp-header-logo-width);max-width:100%;min-width:1px}
.awp-header-logo-image{display:block;width:100%;height:auto;max-width:100%;max-height:calc(var(--awp-header-main-height) - 24px);object-fit:contain;object-position:right center}

.custom-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(var(--awp-header-main-height) - 24px);
  object-fit: contain;
  object-position: right center;
}

.awp-brand-default {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.awp-brand-mark {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: var(--awp-primary);
  display: grid;
  place-items: center;
  color: #111;
  font-size: 22px;
  font-weight: 950;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
}

.awp-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.awp-brand-copy strong {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.awp-brand-copy small {
  font-size: 9px;
  letter-spacing: .22em;
  color: #8a8d93;
  margin-top: 6px;
}

.awp-header-search-wrap {
  grid-area: search;
  max-width: var(--awp-header-search-width);
  width: 100%;
  justify-self: center;
}

.awp-product-search {
  display: flex;
  align-items: center;
  position: relative;
  background: #f5f6f7;
  border: 1px solid #eceef0;
  border-radius: 13px;
  padding: 4px;
}

.awp-product-search:focus-within {
  background: #fff;
  border-color: #d2d5d9;
  box-shadow: 0 0 0 3px rgba(255,204,0,.12);
}

.awp-search-icon {
  width: 44px;
  display: grid;
  place-items: center;
  color: #888c93;
}

.awp-product-search input[type=search] {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--awp-ink);
  padding: 0 2px;
}

.awp-product-search input[type=search]::placeholder {
  color: #9a9da3;
}

.awp-product-search button {
  height: 40px;
  min-width: 78px;
  border: 0;
  border-radius: 9px;
  background: #111318;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  padding: 0 15px;
}

.awp-product-search button:hover {
  background: #000;
}

.awp-header-search-trending {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 7px 8px 0;
  color: #9a9da3;
  font-size: 10px;
}

.awp-header-search-trending a {
  color: #6e7279;
}

.awp-header-search-trending a:hover {
  color: #111;
}

.awp-header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.awp-header-action {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 12px;
  transition: .2s;
}

.awp-header-action:hover {
  background: #f7f7f8;
}

.awp-action-icon {
  position: relative;
  width: 39px;
  height: 39px;
  border-radius: 11px;
  background: #f3f4f5;
  display: grid;
  place-items: center;
}

.awp-action-icon svg {
  width: 20px;
}

.awp-action-icon em {
  position: absolute;
  top: -5px;
  left: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--awp-primary);
  color: #15171a;
  border: 2px solid #fff;
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.awp-action-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
  white-space: nowrap;
}

.awp-action-copy small {
  color: #8b8f96;
  font-size: 10px;
}

.awp-action-copy strong {
  font-size: 12px;
}


/* Header dropdowns */
.awp-header-dropdown{position:relative}.awp-header-dropdown-trigger{position:relative}.awp-header-dropdown-chevron{display:grid;place-items:center;width:15px;color:#9a9ea4;transition:transform .18s ease}.awp-header-dropdown-chevron svg{width:14px}.awp-header-dropdown.is-open .awp-header-dropdown-chevron{transform:rotate(180deg)}.awp-header-dropdown-panel{position:absolute;top:calc(100% + 8px);inset-inline-end:0;z-index:160;width:310px;padding:10px;border:1px solid var(--awp-border);border-radius:15px;background:#fff;box-shadow:0 22px 55px rgba(16,20,28,.16);opacity:0;visibility:hidden;transform:translateY(7px);transition:opacity .18s ease,visibility .18s ease,transform .18s ease}.awp-header-dropdown-panel::before{content:"";position:absolute;top:-9px;right:0;left:0;height:9px}.awp-cart-dropdown-panel{width:360px;padding:0;overflow:hidden}.awp-header-dropdown.is-open>.awp-header-dropdown-panel,.awp-header-dropdown:focus-within>.awp-header-dropdown-panel{opacity:1;visibility:visible;transform:none}@media(hover:hover) and (pointer:fine){.awp-header-dropdown:hover>.awp-header-dropdown-panel{opacity:1;visibility:visible;transform:none}}
.awp-header-account-user{display:grid;grid-template-columns:46px minmax(0,1fr);gap:10px;align-items:center;padding:7px 7px 12px;border-bottom:1px solid var(--awp-border)}.awp-header-account-avatar{width:46px;height:46px;overflow:hidden;border-radius:12px;background:#f2f3f4}.awp-header-account-avatar img{display:block;width:100%;height:100%;object-fit:cover}.awp-header-account-user>div:last-child{display:grid;min-width:0;gap:1px}.awp-header-account-user small{color:#989da3;font-size:8.8px}.awp-header-account-user strong{overflow:hidden;color:#262a2f;font-size:11.5px;text-overflow:ellipsis;white-space:nowrap}.awp-header-account-user span{overflow:hidden;direction:ltr;color:#9b9fa5;font-size:8.5px;text-align:right;text-overflow:ellipsis;white-space:nowrap}.awp-header-account-menu{display:grid;gap:3px;padding-top:8px}.awp-header-account-menu a{display:grid;grid-template-columns:32px minmax(0,1fr) 17px;gap:8px;align-items:center;min-height:40px;padding:4px 6px;border-radius:9px;color:#42484e;font-size:10.5px;font-weight:800;text-decoration:none}.awp-header-account-menu a:hover{background:#f6f7f8;color:#111318}.awp-header-account-menu a.is-logout{margin-top:4px;border-top:1px solid #f0f1f2;border-radius:0 0 9px 9px;color:#a13d3d}.awp-header-account-menu a.is-logout:hover{background:#fff4f4;color:#8d3030}.awp-header-account-menu-icon{display:grid;place-items:center;width:32px;height:32px;border-radius:8px;background:#f1f2f4;color:#666c72}.awp-header-account-menu-icon svg,.awp-header-account-menu-arrow svg{width:15px;height:15px}.awp-header-account-menu-arrow{display:grid;place-items:center;color:#adb1b5}.awp-header-account-guest{display:grid;grid-template-columns:42px minmax(0,1fr);gap:10px;align-items:start;padding:7px}.awp-header-account-guest-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:11px;background:var(--awp-primary-soft);color:#343434}.awp-header-account-guest-icon svg{width:19px}.awp-header-account-guest strong{display:block;margin:2px 0 4px;font-size:11.5px}.awp-header-account-guest p{margin:0;color:#868b91;font-size:9px;line-height:1.9}.awp-header-account-login{grid-column:1/-1;display:flex;align-items:center;justify-content:center;min-height:38px;margin-top:5px;border-radius:9px;background:#111318;color:#fff;font-size:10px;font-weight:850;text-decoration:none}.awp-header-account-login:hover{background:#000;color:#fff}
.awp-header-cart-fragment{background:#fff}.awp-header-cart-panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 15px;border-bottom:1px solid var(--awp-border)}.awp-header-cart-panel-head>div{display:grid;gap:1px}.awp-header-cart-panel-head small{color:#969ba1;font-size:8.5px}.awp-header-cart-panel-head strong{font-size:12px}.awp-header-cart-panel-head>a{color:#776100;font-size:9px;font-weight:850;text-decoration:none}.awp-header-cart-panel-body{padding:6px 14px 14px}.awp-header-cart-panel-body .woocommerce-mini-cart{display:grid;gap:0;max-height:310px;margin:0;padding:0;overflow:auto;list-style:none}.awp-header-cart-panel-body .woocommerce-mini-cart-item{position:relative;display:grid;grid-template-columns:54px minmax(0,1fr);gap:10px;min-height:72px;margin:0;padding:10px 22px 10px 0;border-bottom:1px solid #f0f1f2;font-size:10px}.awp-header-cart-panel-body .woocommerce-mini-cart-item>a:not(.remove){display:grid;grid-template-columns:54px minmax(0,1fr);grid-column:1/-1;gap:10px;align-items:center;color:#31363b;font-weight:800;line-height:1.7;text-decoration:none}.awp-header-cart-panel-body .woocommerce-mini-cart-item img{width:54px;height:42px;margin:0;border-radius:8px;object-fit:cover}.awp-header-cart-panel-body .woocommerce-mini-cart-item .quantity{grid-column:2;color:#858a90;font-size:9px}.awp-header-cart-panel-body .remove_from_cart_button{position:absolute;top:50%;right:0;display:grid;place-items:center;width:20px;height:20px;border-radius:6px;background:#fff1f1;color:#aa3b3b;font-size:14px;line-height:1;text-decoration:none;transform:translateY(-50%)}.awp-header-cart-panel-body .woocommerce-mini-cart__total{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:0;padding:13px 0 8px;color:#656b71;font-size:10px}.awp-header-cart-panel-body .woocommerce-mini-cart__total strong{color:#252a2f}.awp-header-cart-panel-body .woocommerce-mini-cart__total .woocommerce-Price-amount{color:#111318;font-size:12px;font-weight:900}.awp-header-cart-panel-body .woocommerce-mini-cart__buttons{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin:0}.awp-header-cart-panel-body .woocommerce-mini-cart__buttons .button{display:flex;align-items:center;justify-content:center;min-height:38px;margin:0;padding:0 10px;border:1px solid #dfe2e5;border-radius:9px;background:#fff;color:#34393f;font-size:9.5px;font-weight:850;text-decoration:none}.awp-header-cart-panel-body .woocommerce-mini-cart__buttons .checkout{border-color:#111318;background:#111318;color:#fff}.awp-header-cart-panel-body .woocommerce-mini-cart__empty-message{margin:0;padding:28px 8px 20px;color:#8b9096;font-size:10px;text-align:center}
.awp-mobile-toggle,.awp-mobile-search-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.awp-header-nav-row {
  background: var(--awp-header-nav-bg);
}

@media (min-width:981px) {
  .awp-auto-hide-header-nav .awp-header-nav-row {
    max-height: var(--awp-header-nav-height);
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height .22s ease,
      opacity .16s ease,
      transform .22s ease;
    will-change: max-height, opacity, transform;
  }

  .awp-auto-hide-header-nav.awp-header-nav-hidden .awp-header-nav-row {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-7px);
  }
}

.awp-header-nav-inner {
  min-height: var(--awp-header-nav-height);
  display: grid;
  grid-template-columns: 230px minmax(0,1fr) auto;
  grid-template-areas: "category primary quick";
  align-items: center;
  gap: 30px;
}
.awp-category-nav-wrap{grid-area:category}.awp-primary-nav{grid-area:primary}.awp-nav-quick-links{grid-area:quick}
.awp-header-nav-inner.awp-header-nav-no-category{grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"primary quick"}.awp-header-nav-inner.awp-header-nav-no-primary{grid-template-columns:230px minmax(0,1fr);grid-template-areas:"category quick"}.awp-header-nav-inner.awp-header-nav-no-quick{grid-template-columns:230px minmax(0,1fr);grid-template-areas:"category primary"}.awp-header-nav-inner.awp-header-nav-no-category.awp-header-nav-no-primary{grid-template-columns:1fr;grid-template-areas:"quick"}.awp-header-nav-inner.awp-header-nav-no-category.awp-header-nav-no-quick{grid-template-columns:1fr;grid-template-areas:"primary"}.awp-header-nav-inner.awp-header-nav-no-primary.awp-header-nav-no-quick{grid-template-columns:1fr;grid-template-areas:"category"}

.awp-category-nav-wrap {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.awp-category-toggle {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f7f7f8;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  font-weight: 800;
  cursor: pointer;
}

.awp-category-toggle svg:last-child {
  margin-right: auto;
  width: 15px;
}

.awp-category-toggle:hover,.awp-category-nav-wrap.open .awp-category-toggle {
  background: var(--awp-primary-soft);
}

.awp-category-mega {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  width: 690px;
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: 0 0 18px 18px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(16,20,28,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s;
  z-index: 100;
}

.awp-category-nav-wrap.open .awp-category-mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.awp-category-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--awp-border);
}

.awp-category-mega-head>div {
  display: flex;
  flex-direction: column;
}

.awp-category-mega-head span {
  font-size: 10px;
  color: #94979d;
}

.awp-category-mega-head strong {
  font-size: 15px;
}

.awp-category-mega-head>a {
  font-size: 11px;
  font-weight: 800;
  display: flex;
  gap: 4px;
  align-items: center;
}

.awp-category-mega-head>a svg {
  width: 15px;
}

.awp-category-mega-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 6px;
}

.awp-category-mega-item {
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 10px;
}

.awp-category-mega-item:hover {
  background: #f7f7f8;
}

.awp-category-mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--awp-primary-soft);
  display: grid;
  place-items: center;
}

.awp-category-mega-icon svg {
  width: 19px;
}

.awp-category-mega-item>span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.awp-category-mega-item strong {
  font-size: 12px;
}

.awp-category-mega-item small {
  font-size: 10px;
  color: #9b9ea4;
}

.awp-category-mega-item>svg {
  width: 14px;
  color: #a4a7ac;
}

.awp-primary-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.awp-primary-nav li {
  position: relative;
}

.awp-primary-nav a {
  font-size: 12px;
  font-weight: 750;
  color: #4e5259;
  padding: 16px 0;
  display: block;
}

.awp-primary-nav a:hover {
  color: #111;
}

.awp-primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  right: -15px;
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(16,20,28,.12);
  min-width: 190px;
  padding: 8px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s;
  z-index: 80;
}

.awp-primary-nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.awp-primary-nav .sub-menu a {
  padding: 8px 10px;
  border-radius: 7px;
}

.awp-primary-nav .sub-menu a:hover {
  background: #f5f6f7;
}

.awp-nav-quick-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.awp-nav-quick-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #5e6269;
}

.awp-nav-quick-links svg {
  width: 16px;
}

.awp-mobile-search-panel,.awp-mobile-drawer {
  display: none;
}

.awp-categories-section {
  background: #fff;
}

ul.products.awp-products-grid,.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product.awp-product-card,.woocommerce-page ul.products li.product.awp-product-card {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
}

.awp-product-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: var(--awp-radius);
  overflow: hidden;
  transition: .22s;
}

.awp-product-card-inner:hover {
  border-color: #d5d7da;
  box-shadow: 0 16px 38px rgba(16,20,28,.09);
  transform: translateY(-3px);
}

.awp-product-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1.55/1;
  overflow: hidden;
  background: #f1f2f3;
}

.awp-product-thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: .35s;
}

.awp-product-card-inner:hover .awp-product-thumb>img {
  transform: scale(1.025);
}

.awp-product-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.awp-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 7px;
  background: #111318;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.awp-badge-sale {
  background: #e63838;
}

.awp-badge-featured {
  background: var(--awp-primary);
  color: #111;
}

.awp-badge-version {
  margin-right: auto;
  background: rgba(255,255,255,.93);
  color: #41444a;
  border: 1px solid rgba(0,0,0,.06);
}

.awp-product-body {
  padding: 15px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.awp-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.awp-product-cat {
  font-size: 10px;
  color: #8b8f95;
}

.awp-product-rating {
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 3px;
}

.awp-product-rating svg {
  width: 13px;
  height: 13px;
  fill: var(--awp-primary);
  stroke: #c89f00;
}

.awp-product-card h2,.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.75;
  padding: 0;
  margin: 0 0 7px;
  min-height: 49px;
}

.awp-product-card h2 a:hover {
  color: #806900;
}

.awp-product-excerpt {
  margin: 0 0 12px;
  color: #777b82;
  font-size: 11px;
  line-height: 1.8;
  min-height: 39px;
}

.awp-product-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-block: 1px solid #f0f1f2;
}

.awp-product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #777b82;
  font-size: 9.5px;
}

.awp-product-meta span+span {
  padding-right: 6px;
  border-right: 1px solid #e7e8ea;
}

.awp-product-meta svg {
  width: 13px;
  height: 13px;
}

.awp-product-meta b {
  color: #555960;
}

.awp-product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 13px;
}

.awp-product-price-label {
  font-size: 9px;
  color: #a0a3a9;
}

.awp-product-price {
  margin-right: auto;
  text-align: left;
}

.awp-product-price .price,.awp-product-price {
  font-size: 15px;
  font-weight: 900;
  color: #17191c;
}

.awp-product-price del {
  font-size: 10px;
  opacity: .45;
  display: block;
}

.awp-product-price ins {
  text-decoration: none;
}

.awp-product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  margin-top: 12px;
}

.awp-product-buy {
  min-height: 38px;
  border-radius: 9px;
  background: #111318;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 850;
}

.awp-product-buy:hover {
  background: #000;
}

.awp-product-buy svg {
  width: 14px;
}

.awp-product-demo {
  min-height: 38px;
  border-radius: 9px;
  border: 1px solid #dfe1e4;
  background: #fff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.awp-product-demo:hover {
  background: #f5f6f7;
}

.awp-update-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--awp-primary);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}

.awp-update-icon svg {
  width: 27px;
}

.awp-update-list {
  border: 1px solid var(--awp-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.awp-main {
  padding: 34px 0 65px;
  min-height: 60vh;
}

.awp-content-card,.awp-page-card {
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: var(--awp-radius);
  padding: 30px;
}

.awp-page-card {
  max-width: 1050px;
  margin: auto;
}

.awp-page-card h1 {
  margin-top: 0;
}

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

.awp-post-card {
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: var(--awp-radius);
  padding: 24px;
  margin-bottom: 16px;
}

.awp-post-card h2 {
  margin-top: 0;
}

.awp-empty {
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: var(--awp-radius);
  padding: 45px;
  text-align: center;
}

.awp-search-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

.awp-404 {
  max-width: 760px;
  margin: auto;
}

.awp-404>span {
  font-size: 82px;
  font-weight: 950;
  color: var(--awp-primary);
  text-shadow: 2px 2px #111318;
}

.woocommerce .woocommerce-breadcrumb {
  font-size: 10px;
  color: #8f9399;
  margin: 0 0 18px;
}

.awp-product-links {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.awp-product-links .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 39px;
  border-radius: 9px;
  font-size: 10px;
}

.awp-product-links svg {
  width: 14px;
}

.awp-purchase-benefits {
  margin-top: 13px;
  border-top: 1px solid var(--awp-border);
  padding-top: 12px;
  display: grid;
  gap: 7px;
}

.awp-purchase-benefits>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.awp-purchase-benefits>div>svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  background: #f4f5f6;
  flex: 0 0 auto;
}

.awp-purchase-benefits span {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.awp-purchase-benefits strong {
  font-size: 10px;
}

.awp-purchase-benefits small {
  font-size: 9px;
  color: #93979d;
}

.woocommerce div.product .product_meta {
  font-size: 10px;
  color: #898d94;
  border-top: 1px solid var(--awp-border);
  padding-top: 12px;
  margin-top: 12px;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--awp-border);
  border-radius: 20px;
  padding: 24px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0 0 23px;
  border-bottom: 1px solid var(--awp-border);
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent;
  margin: 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 {
  padding: 10px 13px;
  font-size: 11px;
  color: #73777e;
  border-bottom: 2px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #111;
  border-bottom-color: var(--awp-primary);
}

.woocommerce div.product .woocommerce-tabs .panel {
  font-size: 13px;
  line-height: 2;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 23px;
}

.awp-changelog,.awp-installation-guide {
  background: #fafafa;
  border: 1px solid var(--awp-border);
  border-right: 3px solid var(--awp-primary);
  border-radius: 10px;
  padding: 16px;
  white-space: normal;
}

.woocommerce form.login,.woocommerce form.register,.woocommerce form.checkout_coupon {
  border: 1px solid var(--awp-border);
  border-radius: 16px;
  background: #fff;
}

.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce select {
  border: 1px solid #dfe1e4;
  border-radius: 9px;
  min-height: 42px;
  padding: 8px 10px;
}

.woocommerce button.button,.woocommerce a.button,.woocommerce input.button {
  border-radius: 9px;
}

.woocommerce button.button.alt,.woocommerce a.button.alt,.woocommerce input.button.alt {
  background: #111318;
  color: #fff;
}

.woocommerce-message,.woocommerce-info,.woocommerce-error {
  border-top: 0;
  border-right: 3px solid var(--awp-primary);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(16,20,28,.04);
}


.awp-mobile-bottom-nav {
  display: none;
}

@media (max-width:1260px) {
  .awp-header-main-inner {
    grid-template-columns: 190px minmax(260px,1fr) auto;
    gap: 18px;
  }

  .awp-action-copy {
    display: none;
  }

  .awp-header-action {
    padding: 4px;
  }

  .awp-header-nav-inner {
    grid-template-columns: 205px 1fr;
  }

  .awp-nav-quick-links {
    display: none;
  }

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

}

@media(max-width:980px){.awp-header-main-inner,.awp-header-main-inner.awp-header-without-search,.awp-header-main-inner.awp-header-without-actions,.awp-header-main-inner.awp-header-without-search.awp-header-without-actions{grid-template-columns:42px minmax(0,1fr) auto;grid-template-areas:"mobile brand actions"}.awp-header-main-inner.awp-header-without-nav-toggle{grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"brand actions"}.awp-header-main-inner.awp-header-without-nav-toggle.awp-header-without-actions{grid-template-columns:1fr;grid-template-areas:"brand"}.awp-mobile-toggle{grid-area:mobile}.awp-brand{grid-area:brand}.awp-header-actions{grid-area:actions}.awp-header-logo-link,.custom-logo-link{width:min(var(--awp-header-logo-width),160px);max-width:100%}.awp-header-dropdown-panel{position:fixed;top:86px;right:14px;left:14px;width:auto;max-width:420px;margin-inline:auto}.admin-bar .awp-header-dropdown-panel{top:118px}}
@media (max-width:980px) {
  .admin-bar.awp-sticky-header .awp-site-header {
    top: 46px;
  }


  .awp-header-main-inner {
    min-height: 72px;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
  }

  .awp-mobile-toggle,.awp-mobile-search-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f4f5f6;
  }

  .awp-brand {
    justify-self: start;
  }

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

  .awp-brand-copy strong {
    font-size: 19px;
  }

  .awp-header-search-wrap {
    display: none;
  }

  .awp-header-nav-row {
    display: none;
  }


  .awp-mobile-search-panel {
    position: fixed;
    inset: 0;
    background: rgba(12,14,18,.55);
    backdrop-filter: blur(6px);
    z-index: 200;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 18px 18px;
  }

  .awp-mobile-search-panel.open {
    display: flex;
  }

  .awp-mobile-search-card {
    background: #fff;
    width: min(620px,100%);
    border-radius: 18px;
    padding: 22px;
    position: relative;
    box-shadow: 0 28px 80px rgba(0,0,0,.24);
  }

  .awp-mobile-search-card h3 {
    font-size: 20px;
    margin: 3px 0 15px;
  }

  .awp-mobile-search-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 9px;
    background: #f2f3f4;
    display: grid;
    place-items: center;
  }

  .awp-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 210;
  }

  .awp-mobile-drawer.open {
    display: block;
  }

  .awp-mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12,14,18,.55);
    backdrop-filter: blur(4px);
  }

  .awp-mobile-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(360px,90vw);
    background: #fff;
    padding: 16px;
    overflow: auto;
  }

  .awp-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--awp-border);
    padding-bottom: 12px;
  }

  .awp-mobile-drawer-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: #f2f3f4;
    display: grid;
    place-items: center;
  }

  .awp-mobile-drawer-search {
    margin: 12px 0 14px;
  }

  .awp-mobile-drawer-search .awp-product-search {
    padding: 2px;
    border-radius: 10px;
  }

  .awp-mobile-drawer-search .awp-search-icon {
    width: 38px;
  }

  .awp-mobile-drawer-search .awp-product-search input[type=search] {
    height: 38px;
    font-size: 12px;
  }

  .awp-mobile-drawer-search .awp-product-search button {
    display: none;
  }

  .awp-header-dropdown[data-mobile-dropdown="0"] .awp-header-dropdown-panel,
  .awp-header-dropdown[data-mobile-dropdown="0"] .awp-header-dropdown-chevron {
    display: none !important;
  }

  .awp-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .awp-mobile-nav a {
    display: flex;
    padding: 10px 8px;
    border-bottom: 1px solid #f1f2f3;
    font-weight: 750;
  }

  .awp-mobile-nav .sub-menu {
    padding-right: 12px;
  }

  .awp-mobile-nav .sub-menu a {
    font-weight: 500;
    color: #73777e;
  }

  .awp-mobile-categories {
    margin-top: 18px;
  }

  .awp-mobile-categories>strong {
    display: block;
    margin-bottom: 7px;
  }

  .awp-mobile-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-radius: 7px;
  }

  .awp-mobile-categories a:nth-child(even) {
    background: #f7f7f8;
  }

  .awp-mobile-categories small {
    color: #999da3;
  }

  .awp-has-mobile-bottom-nav {
    padding-bottom: 67px;
  }

  .awp-mobile-bottom-nav {
    position: fixed;
    right: 10px;
    left: 10px;
    bottom: 8px;
    z-index: 130;
    height: 58px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(16,20,28,.16);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
    padding: 4px;
  }

  .awp-mobile-bottom-nav a,.awp-mobile-bottom-nav button {
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 8.5px;
    color: #797d84;
    height: 48px;
    border-radius: 11px;
  }

  .awp-mobile-bottom-nav a.active {
    color: #111;
    background: var(--awp-primary-soft);
  }

  .awp-mobile-bottom-nav svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width:720px) {
  .awp-container {
    padding-inline: min(var(--awp-gutter), 14px);
  }


  .awp-header-main-inner {
    min-height: 66px;
  }

  .custom-logo {
    max-width: 145px;
    max-height: 45px;
  }

  .awp-cart-link .awp-action-icon {
    background: transparent;
  }

  .awp-section {
    padding: 40px 0;
  }

  .awp-section-head {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .awp-section-head h2 {
    font-size: 22px;
  }

  .awp-section-head p {
    font-size: 11px;
  }

  .awp-section-link {
    display: none;
  }

  ul.products.awp-products-grid,.woocommerce ul.products,.awp-search-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
  }

  .awp-product-body {
    padding: 11px;
  }

  .awp-product-card h2,.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 11.5px;
    min-height: 43px;
    line-height: 1.8;
  }

  .awp-product-excerpt {
    display: none;
  }

  .awp-product-meta {
    padding: 8px 0;
  }

  .awp-product-meta span {
    font-size: 8px;
  }

  .awp-product-meta span:nth-child(2) {
    display: none;
  }

  .awp-product-price-label {
    display: none;
  }

  .awp-product-price {
    font-size: 12px;
  }

  .awp-product-actions {
    grid-template-columns: 1fr;
  }

  .awp-product-demo {
    display: none;
  }

  .awp-product-buy {
    min-height: 34px;
    font-size: 9px;
  }

  .woocommerce div.product .woocommerce-tabs {
    padding: 15px;
    border-radius: 15px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow: auto;
    white-space: nowrap;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 10px;
  }

}

@media (max-width:420px) {
  .awp-brand-copy small {
    display: none;
  }

  ul.products.awp-products-grid,.woocommerce ul.products,.awp-search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awp-product-meta span:nth-child(3) {
    display: none;
  }

}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--awp-primary);
  outline-offset: 3px;
}

.awp-skip-link {
  position: fixed;
  inset-inline-start: var(--awp-gutter);
  top: 10px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 9px 14px;
  border-radius: 8px;
  background: #111318;
  color: #fff;
  font-weight: 800;
}

.awp-skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .awp-auto-hide-header-nav .awp-header-nav-row { transition: none; }
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}



/* Accessibility helpers --------------------------------------------------- */
/* WordPress/WooCommerce use this class for descriptive text that must remain
   available to assistive technologies without taking visual layout space. */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.screen-reader-text:focus {
  position: fixed !important;
  inset-block-start: 10px !important;
  inset-inline-start: 10px !important;
  z-index: 100000 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}


/* Light / dark theme switcher */
.awp-theme-toggle {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.awp-theme-toggle-icon,
.awp-theme-toggle-header {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--awp-border);
  border-radius: 12px;
  background: var(--awp-bg);
  color: var(--awp-ink);
  transition: background-color .18s ease,border-color .18s ease,transform .18s ease,color .18s ease;
}
.awp-theme-toggle-header:hover { transform: translateY(-1px); background: var(--awp-surface); }
.awp-theme-toggle-icons { display: grid; place-items: center; width: 20px; height: 20px; }
.awp-theme-icon { grid-area: 1/1; display: grid; place-items: center; transition: opacity .16s ease,transform .2s ease; }
.awp-theme-icon svg { width: 19px; height: 19px; }
.awp-theme-icon-sun { opacity: 0; transform: rotate(-35deg) scale(.75); }
html[data-awp-theme="dark"] .awp-theme-icon-moon { opacity: 0; transform: rotate(35deg) scale(.75); }
html[data-awp-theme="dark"] .awp-theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }
.awp-theme-toggle-navigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 8px;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
}
.awp-theme-toggle-navigation .awp-theme-toggle-icons { width: 17px; height: 17px; }
.awp-theme-toggle-navigation svg { width: 16px; height: 16px; }
.awp-mobile-drawer-theme { padding: 8px 14px 2px; }
.awp-theme-toggle-drawer {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--awp-border);
  border-radius: 11px;
  background: var(--awp-bg);
  color: var(--awp-ink);
  text-align: right;
  font-size: 10.5px;
  font-weight: 850;
}
.awp-theme-toggle-drawer .awp-theme-toggle-icons { width: 22px; height: 22px; border-radius: 7px; background: var(--awp-primary-soft); }
.awp-theme-toggle-drawer svg { width: 15px; height: 15px; }
.awp-theme-toggle-mobile { display: none; }
html.awp-theme-animate body,
html.awp-theme-animate .awp-site-header,
html.awp-theme-animate .awp-site-content,
html.awp-theme-animate .awp-mobile-bottom-nav,
html.awp-theme-animate .awp-mobile-drawer-panel {
  transition: background-color .22s ease,color .22s ease,border-color .22s ease;
}
@media (max-width:980px) {
  .awp-theme-toggle-desktop { display: none !important; }
  .awp-theme-toggle-mobile { display: inline-grid; }
  .awp-theme-toggle-drawer.awp-theme-toggle-mobile { display: flex; }
}
@media (min-width:981px) {
  .awp-theme-toggle-mobile { display: none !important; }
}
@media (prefers-reduced-motion:reduce) {
  .awp-theme-icon,.awp-theme-toggle-header { transition: none !important; }
}

/* Header builder: separate desktop/mobile composition */
.awp-header-main-inner.awp-header-builder-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.awp-header-builder-item { display: none; min-width: 0; }
.awp-header-builder-item.is-desktop-enabled { order: var(--awp-desktop-order, 99); }
.awp-header-builder-logo { flex: 0 1 auto; }
.awp-header-builder-search { flex: 1 1 420px; }
.awp-header-builder-search .awp-header-search-wrap { width: 100%; max-width: min(100%, var(--awp-header-search-width)); margin-inline: auto; }
.awp-header-builder-theme,
.awp-header-builder-account,
.awp-header-builder-cart { flex: 0 0 auto; }
.awp-header-builder-theme { align-items: center; }
.awp-header-builder-row .awp-header-action { margin: 0; }
.awp-header-builder-row .awp-mobile-search-toggle { margin: 0; }

@media (min-width:981px) {
  .awp-header-builder-item.is-desktop-enabled { display: flex; }
  .awp-header-builder-logo.is-desktop-enabled { display: block; }
  .awp-header-builder-search.is-desktop-enabled { display: block; }
  .awp-header-builder-menu { display: none !important; }
  .awp-header-builder-row .awp-theme-toggle-mobile { display: none !important; }
}

@media (max-width:980px) {
  .awp-header-main-inner.awp-header-builder-row {
    min-height: 72px;
    gap: 5px;
    padding-inline: min(var(--awp-gutter), 12px);
    overflow: visible;
  }
  .awp-header-builder-item.is-desktop-enabled { order: initial; }
  .awp-header-builder-item.is-mobile-enabled { display: flex; order: var(--awp-mobile-order, 99); }
  .awp-header-builder-logo.is-mobile-enabled { display: block; flex: 1 1 auto; }
  .awp-header-builder-search.is-mobile-enabled { display: flex; flex: 0 0 auto; }
  .awp-header-builder-theme.is-mobile-enabled,
  .awp-header-builder-account.is-mobile-enabled,
  .awp-header-builder-cart.is-mobile-enabled,
  .awp-header-builder-menu.is-mobile-enabled { flex: 0 0 auto; }
  .awp-header-builder-search .awp-desktop-search-wrap { display: none !important; }
  .awp-header-builder-row .awp-mobile-toggle,
  .awp-header-builder-row .awp-mobile-search-toggle,
  .awp-header-builder-row .awp-theme-toggle-header,
  .awp-header-builder-row .awp-action-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }
  .awp-header-builder-row .awp-header-action { min-height: 38px; padding: 0; gap: 0; }
  .awp-header-builder-row .awp-action-copy,
  .awp-header-builder-row .awp-header-dropdown-chevron { display: none !important; }
  .awp-header-builder-row .awp-header-logo-link,
  .awp-header-builder-row .custom-logo-link { width: min(var(--awp-header-logo-width), 150px); }
  .awp-header-builder-row .awp-theme-toggle-desktop { display: none !important; }
  .awp-header-builder-row .awp-theme-toggle-mobile { display: inline-grid; }
}

@media (max-width:560px) {
  .awp-header-main-inner.awp-header-builder-row { gap: 3px; }
  .awp-header-builder-row .awp-mobile-toggle,
  .awp-header-builder-row .awp-mobile-search-toggle,
  .awp-header-builder-row .awp-theme-toggle-header,
  .awp-header-builder-row .awp-action-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .awp-header-builder-row .awp-header-action { min-height: 36px; }
  .awp-header-builder-row .awp-header-logo-link,
  .awp-header-builder-row .custom-logo-link { width: min(var(--awp-header-logo-width), 132px); }
}
@media (max-width:980px) {
  .awp-header-builder-row .awp-mobile-toggle,
  .awp-header-builder-row .awp-mobile-search-toggle { align-items:center; justify-content:center; }
}
