.dokan-single-store .profile-info-box.the-art-has-store-banner > .profile-info-img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 8 / 3;
  object-fit: cover;
  object-position: center;
}

/*
 * The ART Design System v1.0 — public artist profile.
 * Existing framework colours are reused where available; fallbacks keep this
 * public-facing stylesheet safe when it is loaded without the onboarding CSS.
 */
:root {
  --art-radius-header: 32px;
  --art-radius-card: var(--art-radius-md, 24px);
  --art-radius-media: 20px;
  --art-radius-field: 16px;
  --art-radius-button: 999px;
  --art-surface-page: var(--theme-palette-color-8, var(--art-surface, #f8f8f6));
  --art-surface-card: var(--art-white, #fff);
  --art-border-soft: #e8e3db;
  --art-text-primary: var(--art-text, #151b1e);
  --art-text-muted: var(--art-muted, #555);
  --art-action-dark: var(--art-ink, #080d0f);
  --art-shadow-soft: 0 8px 30px rgba(18, 27, 31, .05);
  --art-focus-ring: rgba(8, 13, 15, .28);
  --art-notice-radius: var(--art-radius-field, 16px);
  --art-notice-info-bg: #f2f0eb;
  --art-notice-info-text: #343a3d;
  --art-notice-info-border: #ded9d1;
  --art-notice-success-bg: #edf5ef;
  --art-notice-success-text: #356344;
  --art-notice-success-border: #cadfce;
  --art-notice-warning-bg: #faf3e5;
  --art-notice-warning-text: #7a5a24;
  --art-notice-warning-border: #ead8af;
  --art-notice-error-bg: #f8ecec;
  --art-notice-error-text: #8f3838;
  --art-notice-error-border: #e8caca;
  --art-notice-error-accent: #b44747;
  --art-notice-icon-size: 20px;
  --art-notice-icon-gap: 14px;
  --art-notice-padding-block: 16px;
  --art-notice-padding-inline: 20px;
}

/*
 * Global public notice system. Status classes and message content continue to
 * be owned by Dokan, WooCommerce and The ART; this layer is presentation only.
 */
.woocommerce-notices-wrapper,
.woocommerce-NoticeGroup {
  width: 100%;
  max-width: 100%;
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible,
  .art-upload-status.is-visible.is-success,
  .art-upload-status.is-visible.is-warning
) {
  box-sizing: border-box;
  position: relative;
  clear: both;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0 0 20px;
  padding-block: var(--art-notice-padding-block);
  padding-inline-start: calc(
    var(--art-notice-padding-inline) +
    var(--art-notice-icon-size) +
    var(--art-notice-icon-gap)
  );
  padding-inline-end: var(--art-notice-padding-inline);
  border: 1px solid var(--art-notice-border-color, var(--art-notice-info-border));
  border-left: 4px solid var(--art-notice-accent, var(--art-notice-info-text));
  border-radius: var(--art-notice-radius);
  background: var(--art-notice-background, var(--art-notice-info-bg));
  background-image: none;
  box-shadow: none;
  color: var(--art-notice-color, var(--art-notice-info-text));
  font-size: inherit;
  line-height: 1.55;
  white-space: normal;
  overflow-wrap: anywhere;
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible
) {
  display: block;
}

:is(
  .dokan-alert,
  .dokan-alert-info,
  .dokan-info,
  .woocommerce-info,
  .woocommerce-store-notice
) {
  --art-notice-background: var(--art-notice-info-bg);
  --art-notice-color: var(--art-notice-info-text);
  --art-notice-border-color: var(--art-notice-info-border);
  --art-notice-accent: var(--art-notice-info-text);
}

:is(
  .dokan-alert-success,
  .dokan-message,
  .woocommerce-message,
  .art-upload-status.is-visible.is-success
) {
  --art-notice-background: var(--art-notice-success-bg);
  --art-notice-color: var(--art-notice-success-text);
  --art-notice-border-color: var(--art-notice-success-border);
  --art-notice-accent: var(--art-notice-success-text);
}

:is(
  .dokan-alert-warning,
  .art-upload-status.is-visible.is-warning
) {
  --art-notice-background: var(--art-notice-warning-bg);
  --art-notice-color: var(--art-notice-warning-text);
  --art-notice-border-color: var(--art-notice-warning-border);
  --art-notice-accent: var(--art-notice-warning-text);
}

:is(
  .dokan-alert-danger,
  .dokan-error,
  .woocommerce-error,
  .art-error.is-visible
) {
  --art-notice-background: var(--art-notice-error-bg);
  --art-notice-color: var(--art-notice-error-text);
  --art-notice-border-color: var(--art-notice-error-border);
  --art-notice-accent: var(--art-notice-error-accent);
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible,
  .art-upload-status.is-visible.is-success,
  .art-upload-status.is-visible.is-warning
)::before {
  position: absolute;
  inset-block-start: calc(var(--art-notice-padding-block) + 2px);
  inset-inline-start: var(--art-notice-padding-inline);
  inline-size: var(--art-notice-icon-size);
  block-size: var(--art-notice-icon-size);
  max-inline-size: var(--art-notice-icon-size);
  max-block-size: var(--art-notice-icon-size);
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: calc(var(--art-notice-icon-size) - 2px);
  text-align: center;
  white-space: nowrap;
  transform: none;
}

:is(
  .dokan-alert,
  .dokan-alert-info,
  .dokan-info,
  .woocommerce-info,
  .woocommerce-store-notice
)::before {
  content: "i";
}

:is(
  .dokan-alert-success,
  .dokan-message,
  .woocommerce-message,
  .art-upload-status.is-visible.is-success
)::before {
  content: "\2713";
}

:is(
  .dokan-alert-warning,
  .art-upload-status.is-visible.is-warning
)::before {
  content: "!";
}

:is(
  .dokan-alert-danger,
  .dokan-error,
  .woocommerce-error,
  .art-error.is-visible
)::before {
  content: "\00d7";
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible,
  .art-upload-status.is-visible.is-success,
  .art-upload-status.is-visible.is-warning
) > :is(p, ul, ol):first-child {
  margin-top: 0;
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible,
  .art-upload-status.is-visible.is-success,
  .art-upload-status.is-visible.is-warning
) > :is(p, ul, ol):last-child {
  margin-bottom: 0;
}

:is(.woocommerce-error, .dokan-alert) li + li {
  margin-top: 6px;
}

ul.woocommerce-error > li {
  margin-inline-start: 1em;
  padding-inline-start: .15em;
  list-style: disc outside;
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible,
  .art-upload-status.is-visible.is-success,
  .art-upload-status.is-visible.is-warning
) a {
  color: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

:is(
  .dokan-alert,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error
) a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: right;
  min-height: 32px;
  margin: -4px 0 -4px 16px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: var(--art-radius-button);
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transform: none;
}

:is(
  .dokan-alert,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error
) a.button:hover {
  background: rgba(8, 13, 15, .06);
  color: inherit;
}

.dokan-alert .close {
  display: inline-grid;
  float: right;
  min-width: 28px;
  min-height: 28px;
  margin: -4px -4px 0 12px;
  padding: 0;
  place-items: center;
  color: inherit;
  line-height: 1;
  opacity: .72;
  text-decoration: none;
}

.dokan-alert .close:hover {
  opacity: 1;
}

:is(
  .dokan-alert,
  .dokan-info,
  .dokan-message,
  .dokan-error,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .woocommerce-store-notice,
  .art-error.is-visible,
  .art-upload-status.is-visible.is-success,
  .art-upload-status.is-visible.is-warning
) a:focus-visible,
.dokan-alert .close:focus-visible {
  outline: 3px solid var(--art-focus-ring);
  outline-offset: 3px;
}

.woocommerce-store-notice {
  margin: 0;
  border-radius: var(--art-notice-radius) var(--art-notice-radius) 0 0;
}

/* WooCommerce Blocks notices keep their native SVG in a fixed icon column. */
.wc-block-components-notice-banner {
  --art-notice-background: var(--art-notice-info-bg);
  --art-notice-color: var(--art-notice-info-text);
  --art-notice-border-color: var(--art-notice-info-border);
  --art-notice-accent: var(--art-notice-info-text);
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: var(--art-notice-icon-gap);
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0 0 20px;
  padding: var(--art-notice-padding-block) var(--art-notice-padding-inline);
  border: 1px solid var(--art-notice-border-color);
  border-inline-start: 4px solid var(--art-notice-accent);
  border-radius: var(--art-notice-radius);
  background: var(--art-notice-background);
  box-shadow: none;
  color: var(--art-notice-color);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.wc-block-components-notice-banner.is-success {
  --art-notice-background: var(--art-notice-success-bg);
  --art-notice-color: var(--art-notice-success-text);
  --art-notice-border-color: var(--art-notice-success-border);
  --art-notice-accent: var(--art-notice-success-text);
}

.wc-block-components-notice-banner.is-warning {
  --art-notice-background: var(--art-notice-warning-bg);
  --art-notice-color: var(--art-notice-warning-text);
  --art-notice-border-color: var(--art-notice-warning-border);
  --art-notice-accent: var(--art-notice-warning-text);
}

.wc-block-components-notice-banner.is-error {
  --art-notice-background: var(--art-notice-error-bg);
  --art-notice-color: var(--art-notice-error-text);
  --art-notice-border-color: var(--art-notice-error-border);
  --art-notice-accent: var(--art-notice-error-accent);
}

.wc-block-components-notice-banner > svg {
  flex: 0 0 auto;
  inline-size: var(--art-notice-icon-size);
  block-size: var(--art-notice-icon-size);
  max-inline-size: var(--art-notice-icon-size);
  max-block-size: var(--art-notice-icon-size);
  margin: 2px 0 0;
  color: inherit;
  fill: currentColor;
  object-fit: contain;
}

.wc-block-components-notice-banner__content {
  min-width: 0;
  flex: 1 1 auto;
}

.wc-block-components-notice-banner__content a {
  color: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.wc-block-components-notice-banner__content .wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: right;
  min-height: 32px;
  margin: -4px 0 -4px 16px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: var(--art-radius-button);
  background: transparent;
  color: inherit;
  line-height: 1.2;
  text-decoration: none;
}

.wc-block-components-notice-banner__content a:focus-visible {
  outline: 3px solid var(--art-focus-ring);
  outline-offset: 3px;
}

/* Match notices injected before Blocksy's single-product container. */
body.single-product #main > :is(
  .woocommerce-notices-wrapper,
  .woocommerce-NoticeGroup,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error,
  .wc-block-components-notice-banner
) {
  width: var(--theme-container-width, 100%);
  max-width: 100%;
  margin-inline: auto;
}

/* Classic Cart: one card for the cart table, separate cards for summaries. */
body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-cart .cart-collaterals .cross-sells {
  box-sizing: border-box;
  max-width: 100%;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

body.woocommerce-cart .woocommerce-cart-form {
  overflow-x: auto;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: inherit;
  background: transparent;
}

body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-cart .cart-collaterals .cross-sells {
  padding: clamp(20px, 3vw, 30px);
}

body.woocommerce-cart :is(.cart_totals, .cross-sells) > h2 {
  margin-top: 0;
}

body.woocommerce-cart .cart_totals table.shop_table {
  margin-bottom: 22px;
  border: 0;
  background: transparent;
}

body.woocommerce-cart :is(.coupon .input-text, .quantity .qty) {
  border-radius: var(--art-radius-field);
}

/* Cart Blocks: main items, summary and empty state remain separate surfaces. */
body.woocommerce-cart .wp-block-woocommerce-cart :is(
  .wc-block-cart__main,
  .wc-block-cart__sidebar
),
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  box-sizing: border-box;
  max-width: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart-items {
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

body.woocommerce-cart .wp-block-woocommerce-cart :is(
  .wc-block-components-quantity-selector,
  .wc-block-components-text-input input
) {
  border-radius: var(--art-radius-field);
}

/* Classic Checkout: billing/shipping and order review are intentional cards. */
body.woocommerce-checkout form.checkout #customer_details > :is(.col-1, .col-2),
body.woocommerce-checkout form.checkout #order_review {
  box-sizing: border-box;
  max-width: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

body.woocommerce-checkout form.checkout #order_review {
  isolation: isolate;
  overflow: hidden;
}

body.woocommerce-checkout #order_review > .woocommerce-checkout-review-order-table {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0;
  background: transparent;
}

body.woocommerce-checkout #payment {
  margin: 24px 0 0;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-field);
  background: transparent;
  overflow: hidden;
}

body.woocommerce-checkout #payment ul.payment_methods,
body.woocommerce-checkout #payment .place-order {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
}

body.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--art-border-soft);
}

body.woocommerce-checkout #payment div.payment_box {
  border-radius: var(--art-radius-field);
}

body.woocommerce-checkout #payment .woocommerce-info {
  margin-bottom: 0;
}

body.woocommerce-checkout form.checkout :is(
  input.input-text,
  textarea,
  select,
  .select2-selection
) {
  border-radius: var(--art-radius-field);
}

/* Checkout Blocks: form and order summary columns form two coherent cards. */
body.woocommerce-checkout .wp-block-woocommerce-checkout :is(
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar
) {
  box-sizing: border-box;
  max-width: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

body.woocommerce-checkout .wp-block-woocommerce-checkout :is(
  .wc-block-components-order-summary,
  .wc-block-components-text-input input,
  .wc-block-components-combobox-control input,
  textarea,
  select
) {
  border-radius: var(--art-radius-field);
}

body.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-order-summary {
  overflow: hidden;
}

/* Dokan Pro's dedicated biography template receives a body class in PHP. */
body.the-art-vendor-biography .dokan-single-store .store-page-wrap {
  margin-top: 32px;
}

@media (max-width: 1199px) {
  body.the-art-vendor-biography .dokan-single-store .store-page-wrap {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --art-notice-icon-size: 18px;
    --art-notice-icon-gap: 11px;
    --art-notice-padding-block: 14px;
    --art-notice-padding-inline: 16px;
  }

  body.woocommerce-cart .cart-collaterals :is(.cart_totals, .cross-sells),
  body.woocommerce-cart .wp-block-woocommerce-cart :is(.wc-block-cart__main, .wc-block-cart__sidebar),
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block,
  body.woocommerce-checkout form.checkout #customer_details > :is(.col-1, .col-2),
  body.woocommerce-checkout form.checkout #order_review,
  body.woocommerce-checkout .wp-block-woocommerce-checkout :is(.wc-block-checkout__main, .wc-block-checkout__sidebar) {
    padding: 18px;
  }

  body.woocommerce-checkout #payment {
    margin-top: 20px;
  }

  body.woocommerce-checkout #payment ul.payment_methods,
  body.woocommerce-checkout #payment .place-order {
    padding: 18px;
  }

  body.the-art-vendor-biography .dokan-single-store .store-page-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  :is(
    .dokan-alert,
    .dokan-info,
    .dokan-message,
    .dokan-error,
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error,
    .woocommerce-store-notice,
    .art-error.is-visible,
    .art-upload-status.is-visible.is-success,
    .art-upload-status.is-visible.is-warning
  ) {
    margin-bottom: 16px;
  }

  :is(
    .dokan-alert,
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error
  ) a.button {
    display: flex;
    float: none;
    width: fit-content;
    max-width: 100%;
    margin: 12px 0 0;
  }

  .wc-block-components-notice-banner__content .wc-forward {
    display: flex;
    float: none;
    width: fit-content;
    max-width: 100%;
    margin: 12px 0 0;
  }

  .woocommerce-store-notice {
    margin: 0;
  }
}

@media (max-width: 359px) {
  :root {
    --art-notice-icon-gap: 10px;
    --art-notice-padding-inline: 14px;
  }
}

/*
 * TASK-023 — curated artist directory. Dokan continues to own the query,
 * filtering, sorting, pagination and Follow actions; this section owns only
 * the public presentation of those controls and results.
 */
#dokan-store-listing-filter-wrap,
#dokan-store-listing-filter-form-wrap {
  box-sizing: border-box;
  width: calc(100% - 64px);
  max-width: var(--theme-container-width, 1290px);
  margin-inline: auto;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

#dokan-store-listing-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 22px;
  padding: 16px 20px;
}

#dokan-store-listing-filter-wrap :is(.left, .right, .item, .sort-by) {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

#dokan-store-listing-filter-wrap .right {
  flex-wrap: wrap;
  justify-content: flex-end;
}

#dokan-store-listing-filter-wrap .store-count,
#dokan-store-listing-filter-wrap label {
  margin: 0;
  color: var(--art-text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: lowercase;
}

#dokan-store-listing-filter-wrap :is(select, button),
#dokan-store-listing-filter-form-wrap :is(input, button) {
  min-height: 42px;
  border-radius: var(--art-radius-field);
  font: inherit;
}

#dokan-store-listing-filter-wrap select {
  min-width: 150px;
  padding-inline: 12px 36px;
  border: 1px solid var(--art-border-soft);
  background-color: var(--art-surface-card);
  color: var(--art-text-primary);
  text-transform: lowercase;
}

#dokan-store-listing-filter-wrap .dokan-store-list-filter-button,
#dokan-store-listing-filter-form-wrap #apply-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--art-action-dark);
  border-radius: var(--art-radius-button);
  background: var(--art-action-dark);
  box-shadow: none;
  color: #fff;
  font-weight: 650;
  line-height: 1.2;
  text-transform: lowercase;
}

#dokan-store-listing-filter-wrap .dokan-store-list-filter-button:hover,
#dokan-store-listing-filter-form-wrap #apply-filter-btn:hover {
  background: #22292c;
  color: #fff;
}

#dokan-store-listing-filter-wrap .toggle-view {
  gap: 4px;
  color: var(--art-text-muted);
}

#dokan-store-listing-filter-wrap .toggle-view .dashicons {
  display: inline-grid;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  place-items: center;
  line-height: 34px;
}

#dokan-store-listing-filter-form-wrap {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin: 0 auto 28px;
  padding: 18px 20px;
}

/* Dokan opens this form with an inline display:block state. */
#dokan-store-listing-filter-form-wrap[style*="display: block"] {
  display: grid !important;
}

#dokan-store-listing-filter-form-wrap .store-search,
#dokan-store-listing-filter-form-wrap .store-search-input {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

#dokan-store-listing-filter-form-wrap .store-search-input {
  padding-inline: 14px;
  border: 1px solid var(--art-border-soft);
  background: var(--art-surface-card);
  color: var(--art-text-primary);
}

#dokan-store-listing-filter-form-wrap .store-search-input::placeholder {
  color: var(--art-text-muted);
  opacity: .78;
  text-transform: lowercase;
}

#dokan-store-listing-filter-form-wrap .apply-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

#dokan-store-listing-filter-form-wrap #cancel-filter-btn {
  padding: 9px 16px;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-button);
  background: transparent;
  box-shadow: none;
  color: var(--art-text-primary);
  font-weight: 600;
  text-transform: lowercase;
}

#dokan-store-listing-filter-wrap :is(button, select):focus-visible,
#dokan-store-listing-filter-form-wrap :is(input, button):focus-visible {
  outline: 3px solid var(--art-focus-ring);
  outline-offset: 3px;
}

/*
 * TASK-023B — final artist directory cards. Dokan owns data, filtering,
 * pagination and Follow AJAX; these rules own only the scoped presentation.
 */
#dokan-seller-listing-wrap.the-art-artist-directory {
  box-sizing: border-box;
  width: calc(100% - 64px);
  min-width: 0;
  max-width: var(--theme-container-width, 1290px);
  margin: 28px auto 0;
  padding: 0;
}

#dokan-seller-listing-wrap.the-art-artist-directory :is(.seller-listing-content, .dokan-seller-wrap) {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

#dokan-seller-listing-wrap.the-art-artist-directory .dokan-seller-wrap {
  list-style: none;
}

#dokan-seller-listing-wrap.the-art-artist-directory .dokan-seller-wrap::before,
#dokan-seller-listing-wrap.the-art-artist-directory .dokan-seller-wrap::after {
  content: none;
  display: none;
}

#dokan-seller-listing-wrap.the-art-artist-directory.grid-view .dokan-seller-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

#dokan-seller-listing-wrap.the-art-artist-directory.list-view .dokan-seller-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

#dokan-seller-listing-wrap.the-art-artist-directory .dokan-seller-wrap > li.dokan-single-seller {
  box-sizing: border-box;
  display: block;
  float: none;
  clear: none;
  width: 100% !important;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
  --art-directory-avatar: clamp(72px, 22%, 90px);
  --art-directory-inset: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__cover-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  aspect-ratio: 8 / 3;
  overflow: hidden;
  border-radius: var(--art-radius-card) var(--art-radius-card) 0 0;
  background: var(--art-border-soft);
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__cover {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__cover-wrap::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 14, 16, .42), rgba(10, 14, 16, .13) 52%, transparent 78%),
    linear-gradient(0deg, rgba(10, 14, 16, .48), transparent 62%);
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__avatar {
  position: absolute;
  z-index: 2;
  top: var(--art-directory-inset);
  left: var(--art-directory-inset);
  width: var(--art-directory-avatar);
  height: var(--art-directory-avatar);
  margin: 0;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__avatar :is(a, img) {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__avatar img {
  border: 5px solid #fff;
  background: #fff;
  box-shadow: 0 7px 20px rgba(18, 27, 31, .2);
  object-fit: cover;
  object-position: center;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__name {
  position: absolute;
  z-index: 2;
  top: calc(var(--art-directory-inset) + var(--art-directory-avatar) + 6px);
  right: var(--art-directory-inset);
  left: var(--art-directory-inset);
  display: -webkit-box;
  max-height: 2.3em;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .72);
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__name a {
  color: inherit;
  text-decoration: none;
  text-transform: none;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow {
  position: absolute;
  z-index: 3;
  top: var(--art-directory-inset);
  right: var(--art-directory-inset);
  margin: 0;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow:empty {
  display: none;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow .dokan-follow-store-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  place-items: center;
  background: rgba(13, 18, 20, .36);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 0;
  line-height: 1;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow .dokan-follow-store-button::before {
  content: "♡";
  font-family: Arial, sans-serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .48);
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow .dokan-follow-store-button[aria-pressed="true"]::before {
  content: "♥";
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow .dokan-follow-store-button > * {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow .dokan-follow-store-button:hover {
  border-color: #fff;
  background: rgba(13, 18, 20, .52);
  color: #fff;
  transform: scale(1.04);
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__follow .dokan-follow-store-button:active {
  transform: scale(.96);
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__actions {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 18px 20px 20px;
  border: 0;
  background: transparent;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--art-action-dark);
  border-radius: var(--art-radius-button);
  background: var(--art-action-dark);
  color: #fff;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
}

#dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__primary:hover {
  background: #22292c;
  color: #fff;
}

#dokan-seller-listing-wrap.the-art-artist-directory :is(
  .the-art-artist-card__cover,
  .the-art-artist-card__avatar a,
  .the-art-artist-card__name a,
  .the-art-artist-card__primary,
  .the-art-artist-card__follow .dokan-follow-store-button
):focus-visible {
  outline: 3px solid var(--art-focus-ring);
  outline-offset: 3px;
}

#dokan-seller-listing-wrap.the-art-artist-directory .pagination-container {
  margin-top: 36px;
}

#dokan-seller-listing-wrap.the-art-artist-directory .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#dokan-seller-listing-wrap.the-art-artist-directory .pagination :is(a, .current) {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-button);
  place-items: center;
  background: var(--art-surface-card);
  color: var(--art-text-primary);
  text-decoration: none;
  text-transform: lowercase;
}

#dokan-seller-listing-wrap.the-art-artist-directory .pagination .current {
  border-color: var(--art-action-dark);
  background: var(--art-action-dark);
  color: #fff;
}

@supports not (aspect-ratio: 8 / 3) {
  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__cover-wrap {
    height: 0;
    padding-bottom: 37.5%;
  }
}

@media (min-width: 768px) {
  #dokan-seller-listing-wrap.the-art-artist-directory.list-view .the-art-artist-card {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(240px, 1fr);
    align-items: stretch;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory.list-view .the-art-artist-card__cover-wrap {
    align-self: center;
    border-radius: var(--art-radius-card) 0 0 var(--art-radius-card);
  }

  #dokan-seller-listing-wrap.the-art-artist-directory.list-view .the-art-artist-card__actions {
    align-items: center;
    align-self: stretch;
    padding: 28px;
  }
}

@media (max-width: 1024px) {
  #dokan-seller-listing-wrap.the-art-artist-directory.grid-view .dokan-seller-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  #dokan-store-listing-filter-wrap,
  #dokan-store-listing-filter-form-wrap,
  #dokan-seller-listing-wrap.the-art-artist-directory {
    width: calc(100% - 48px);
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
    --art-directory-avatar: clamp(72px, 22%, 84px);
    --art-directory-inset: 10px;
  }
}

@media (max-width: 767px) {
  #dokan-seller-listing-wrap.the-art-artist-directory.list-view .the-art-artist-card {
    display: flex;
  }
}

@media (max-width: 640px) {
  #dokan-store-listing-filter-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  #dokan-store-listing-filter-wrap .right {
    width: 100%;
    justify-content: flex-start;
  }

  #dokan-store-listing-filter-wrap .sort-by {
    flex: 1 1 180px;
  }

  #dokan-store-listing-filter-wrap .sort-by select {
    min-width: 0;
    flex: 1 1 auto;
  }

  #dokan-store-listing-filter-form-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  #dokan-store-listing-filter-form-wrap .apply-filter {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  #dokan-store-listing-filter-form-wrap .apply-filter button {
    width: 100%;
  }

  #dokan-store-listing-filter-wrap,
  #dokan-store-listing-filter-form-wrap,
  #dokan-seller-listing-wrap.the-art-artist-directory {
    width: calc(100% - 32px);
  }

  #dokan-seller-listing-wrap.the-art-artist-directory {
    margin-top: 22px;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory.grid-view .dokan-seller-wrap,
  #dokan-seller-listing-wrap.the-art-artist-directory.list-view .dokan-seller-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
    --art-directory-avatar: clamp(72px, 21%, 78px);
    --art-directory-inset: 8px;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__avatar img {
    border-width: 4px;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__name {
    font-size: clamp(16px, 4.7vw, 19px);
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__actions {
    padding: 16px 18px 18px;
  }
}

@media (max-width: 370px) {
  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
    --art-directory-avatar: 66px;
    --art-directory-inset: 6px;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__name {
    top: 77px;
    max-height: 2.2em;
    font-size: 16px;
    line-height: 1.1;
  }
}

@media (max-width: 359px) {
  #dokan-store-listing-filter-wrap,
  #dokan-store-listing-filter-form-wrap {
    padding: 14px;
  }

  #dokan-store-listing-filter-wrap :is(.right, .sort-by) {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  #dokan-store-listing-filter-wrap .item,
  #dokan-store-listing-filter-wrap :is(select, button) {
    width: 100%;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
    --art-directory-avatar: 56px;
    --art-directory-inset: 5px;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card__name {
    top: 66px;
    max-height: 2.1em;
    font-size: 15.5px;
    line-height: 1.05;
  }
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card:hover {
    box-shadow: 0 14px 34px rgba(18, 27, 31, .09);
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card {
    transition: none;
  }

  #dokan-seller-listing-wrap.the-art-artist-directory .the-art-artist-card:hover {
    transform: none;
  }
}

/* Native Dokan Follow login modal, visually aligned with The ART. */
#dokan-modal-login-form-popup[role="dialog"] {
  box-sizing: border-box;
  width: min(560px, calc(100% - 32px)) !important;
  max-width: 560px !important;
  height: auto !important;
  max-height: calc(100dvh - 32px);
  overflow: auto !important;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-card);
  background: var(--art-surface-card);
  box-shadow: 0 24px 70px rgba(18, 27, 31, .22);
}

#dokan-modal-login-form-popup .iziModal-header {
  padding: 26px 28px 18px;
  background: var(--art-surface-card);
  box-shadow: none;
  color: var(--art-text-primary);
}

#dokan-modal-login-form-popup .iziModal-header-title {
  color: var(--art-text-primary);
  font-size: clamp(21px, 3vw, 27px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-transform: lowercase;
}

#dokan-modal-login-form-popup .iziModal-header-subtitle {
  display: block;
  max-width: 43ch;
  margin-top: 8px;
  color: var(--art-text-muted);
  font-size: 14px;
  line-height: 1.5;
  white-space: normal;
}

#dokan-modal-login-form-popup .iziModal-button-close {
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  opacity: .72;
}

#dokan-modal-login-form-popup .iziModal-button-close:hover {
  background-color: var(--art-surface-soft);
  opacity: 1;
}

#dokan-modal-login-form-popup .iziModal-content {
  padding: 0;
  background: var(--art-surface-card);
}

#dokan-modal-login-form-popup :is(.dokan-login-form-popup-wrapper, #dokan-login-form-popup-form) {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
}

#dokan-modal-login-form-popup #dokan-login-form-popup-form {
  padding: 8px 28px 28px;
}

#dokan-modal-login-form-popup #dokan-login-form-popup-form .dokan-form-group {
  margin: 0 0 18px;
}

#dokan-modal-login-form-popup #dokan-login-form-popup-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--art-text-primary);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  text-transform: lowercase;
}

#dokan-modal-login-form-popup #dokan-login-form-popup-form input {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-field);
  background: #fff;
  box-shadow: none;
  color: var(--art-text-primary);
}

#dokan-modal-login-form-popup :is(input, button, a):focus-visible {
  outline: 3px solid var(--art-focus-ring);
  outline-offset: 3px;
}

#dokan-modal-login-form-popup :is(
  #dokan-login-form-submit-btn,
  #dokan-login-form-working-btn,
  .dokan-popup-create-an-account .dokan-btn
) {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--art-action-dark);
  border-radius: var(--art-radius-button);
  background: var(--art-action-dark);
  box-shadow: none;
  color: #fff;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
}

#dokan-modal-login-form-popup #dokan-login-form-popup-form :is(
  #dokan-login-form-submit-btn,
  #dokan-login-form-working-btn
).dokan-hide,
#dokan-modal-login-form-popup #dokan-login-form-popup-form #dokan-login-form-working-btn[hidden] {
  display: none;
}

#dokan-modal-login-form-popup .dokan-popup-create-an-account {
  margin: 12px 0 0;
  color: transparent;
  font-size: 0;
}

#dokan-modal-login-form-popup #dokan-login-form-popup-form .dokan-popup-create-an-account .dokan-btn {
  border-color: var(--art-border-soft);
  background: transparent;
  color: var(--art-text-primary);
  font-size: 15px;
}

#dokan-modal-login-form-popup a[href*="lostpassword"] {
  color: var(--art-text-muted);
  font-size: 14px;
  text-underline-offset: 3px;
}

#dokan-modal-login-form-popup + .iziModal-overlay {
  background: rgba(81, 72, 59, .42) !important;
  backdrop-filter: blur(2px);
}

@media (max-width: 480px) {
  #dokan-modal-login-form-popup[role="dialog"] {
    width: calc(100% - 24px) !important;
    max-height: calc(100dvh - 24px);
  }

  #dokan-modal-login-form-popup .iziModal-header {
    padding: 22px 54px 16px 20px;
  }

  #dokan-modal-login-form-popup #dokan-login-form-popup-form {
    padding: 6px 20px 22px;
  }
}


.dokan-store-wrap,
.dokan-store-wrap * {
  box-sizing: border-box;
}

.dokan-store-wrap {
  background: transparent;
  color: var(--art-text-primary);
}

/* Profile card: banner, summary, actions and tabs remain one visual unit. */
.dokan-single-store .dokan-profile-frame-wrapper {
  background: var(--art-surface-card);
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-header);
  box-shadow: var(--art-shadow-soft);
}

.dokan-single-store .profile-frame {
  overflow: hidden;
  background: var(--art-surface-card);
  border-radius: var(--art-radius-header) var(--art-radius-header) 0 0;
}

.dokan-single-store .profile-frame .profile-info-box,
.dokan-single-store .profile-frame .profile-info-summery-wrapper {
  border: 0;
  background-color: var(--art-surface-card);
}

.dokan-single-store .profile-frame .profile-info-box > .profile-info-img {
  border-radius: var(--art-radius-header) var(--art-radius-header) 0 0;
}

.dokan-single-store .profile-frame .profile-info-head .profile-img {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.dokan-single-store .profile-frame .profile-info-head .profile-img img {
  display: block;
  margin-inline: auto;
  padding: 3px;
  border: 2px solid var(--art-surface-card);
  background: var(--art-surface-card);
  box-shadow: 0 5px 18px rgba(18, 27, 31, .1);
}

.dokan-single-store .profile-frame .profile-info .store-name {
  margin: 0 0 12px;
  color: var(--art-text-primary);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.dokan-single-store .profile-frame .profile-info .dokan-store-info {
  color: var(--art-text-muted);
}

.dokan-single-store .profile-frame .store-social-wrapper {
  margin-top: 8px;
  margin-bottom: 20px;
}

.dokan-single-store .profile-frame ul.store-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dokan-single-store .profile-frame ul.store-social li {
  margin: 0;
}

.dokan-single-store .profile-frame ul.store-social a {
  display: inline-grid;
  min-width: 36px;
  min-height: 36px;
  place-items: center;
  border-radius: 50%;
}

/* Restore layout2's banner-then-summary flow above Dokan's desktop breakpoint. */
@media (min-width: 1200px) {
  .dokan-single-store .profile-info-box.profile-layout-layout2.the-art-has-store-banner {
    overflow: visible;
    aspect-ratio: auto;
  }

  .dokan-single-store .profile-info-box.profile-layout-layout2.the-art-has-store-banner > .profile-info-img {
    position: relative;
    inset: auto;
    height: auto !important;
  }

  .dokan-single-store .profile-info-box.profile-layout-layout2.the-art-has-store-banner .profile-info-summery-wrapper {
    position: relative;
    inset: auto;
    height: auto;
  }

  .dokan-single-store .profile-info-box.profile-layout-layout2.the-art-has-store-banner .profile-info-summery {
    min-height: 0 !important;
  }
}

/* Follow/share actions and tab navigation. */
.dokan-single-store .dokan-store-tabs {
  overflow: hidden;
  border-radius: 0 0 var(--art-radius-header) var(--art-radius-header);
  text-align: center;
}

.dokan-single-store .dokan-store-tabs ul.dokan-modules-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 4px 20px 20px;
  border: 0;
  background: var(--art-surface-card);
}

.dokan-single-store .dokan-store-tabs .dokan-follow-store-button,
.dokan-single-store .dokan-store-tabs .dokan-share-btn {
  min-width: 132px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px 24px !important;
  border: 1px solid var(--art-action-dark) !important;
  border-radius: var(--art-radius-button) !important;
  background: var(--art-action-dark) !important;
  box-shadow: none !important;
  color: var(--art-surface-card) !important;
  font: inherit;
  font-weight: 600;
  line-height: 1.2 !important;
  text-decoration: none;
  transform: none !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.dokan-single-store .dokan-store-tabs .dokan-follow-store-button:hover,
.dokan-single-store .dokan-store-tabs .dokan-share-btn:hover {
  border-color: #263034 !important;
  background: #263034 !important;
  color: var(--art-surface-card) !important;
}

.dokan-single-store .dokan-store-tabs ul.dokan-list-inline {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--art-border-soft);
  border-radius: 0 0 var(--art-radius-header) var(--art-radius-header);
  background: var(--art-surface-card);
  font-size: 15px;
}

.dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
  min-width: 0;
  flex: 1 1 0;
  margin: 0;
  border: 0;
  border-right: 1px solid var(--art-border-soft);
}

.dokan-single-store .dokan-store-tabs ul.dokan-list-inline li:last-child {
  border-right: 0;
}

.dokan-single-store .dokan-store-tabs ul.dokan-list-inline a {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: transparent;
  color: var(--art-text-muted);
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.dokan-single-store .dokan-store-tabs ul.dokan-list-inline a:hover {
  background: rgba(232, 227, 219, .42);
  color: var(--art-text-primary);
}

.dokan-single-store .dokan-store-tabs ul.dokan-list-inline li.is-active a,
.dokan-single-store .dokan-store-tabs ul.dokan-list-inline li.current a,
.dokan-single-store .dokan-store-tabs ul.dokan-list-inline li.active a,
.dokan-single-store .dokan-store-tabs ul.dokan-list-inline a[aria-current="page"] {
  background: rgba(232, 227, 219, .68);
  color: var(--art-text-primary);
  font-weight: 650;
}

/* Product search and sorting stay outside the profile card. */
.dokan-single-store .dokan-store-products-filter-area {
  margin: clamp(28px, 4vw, 46px) 0 30px;
}

.dokan-single-store .dokan-store-products-ordeby {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(210px, auto);
  align-items: center;
  gap: 12px;
}

.dokan-single-store .dokan-store-products-filter-area .product-name-search,
.dokan-single-store .dokan-store-products-filter-area .orderby-search {
  width: 100%;
  min-width: 0;
  height: 48px;
  margin: 0;
  padding: 0 16px;
  float: none;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-field);
  background: var(--art-surface-card);
  color: var(--art-text-primary);
  line-height: normal;
  box-shadow: none;
}

.dokan-single-store .dokan-store-products-filter-area .search-store-products {
  min-width: 112px;
  height: 48px;
  margin: 0;
  padding: 0 24px;
  float: none;
  border: 1px solid var(--art-action-dark);
  border-radius: var(--art-radius-button);
  background: var(--art-action-dark);
  color: var(--art-surface-card);
  font-weight: 600;
  line-height: 46px;
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease;
}

.dokan-single-store .dokan-store-products-filter-area .search-store-products:hover {
  border-color: #263034;
  background: #263034;
  color: var(--art-surface-card);
}

.dokan-single-store .dokan-store-products-filter-area #dokan-store-products-search-result {
  top: 52px;
  max-width: min(100%, 520px);
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-field);
  background: var(--art-surface-card);
  box-shadow: var(--art-shadow-soft);
}

/* Sidebar rhythm and Dokan contact form. */
.dokan-store-wrap .dokan-store-sidebar .dokan-store-widget {
  margin: 0 0 28px;
}

.dokan-store-wrap .dokan-store-sidebar .widget-title {
  margin: 0 0 18px;
  color: var(--art-text-primary);
  font-size: 18px;
  line-height: 1.3;
}

.dokan-store-wrap .dokan-store-sidebar .dokan-store-widget ul:not(.children) {
  margin-top: 0;
}

.dokan-store-wrap form#dokan-form-contact-seller .dokan-form-group {
  margin-bottom: 12px;
}

.dokan-store-wrap form#dokan-form-contact-seller .dokan-form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--art-border-soft);
  border-radius: var(--art-radius-field);
  background: var(--art-surface-card);
  color: var(--art-text-primary);
  line-height: 1.45;
  box-shadow: none;
}

.dokan-store-wrap form#dokan-form-contact-seller textarea.dokan-form-control {
  min-height: 144px;
  resize: vertical;
}

.dokan-store-wrap form#dokan-form-contact-seller input[type="submit"] {
  min-height: 44px;
  margin: 4px 0 0;
  padding: 10px 22px;
  float: none;
  border: 1px solid var(--art-action-dark);
  border-radius: var(--art-radius-button);
  background: var(--art-action-dark);
  color: var(--art-surface-card);
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease;
}

.dokan-store-wrap form#dokan-form-contact-seller input[type="submit"]:hover {
  border-color: #263034;
  background: #263034;
  color: var(--art-surface-card);
}

/* Consistent keyboard focus without relying on hover alone. */
.dokan-store-wrap :where(
  .dokan-follow-store-button,
  .dokan-share-btn,
  .dokan-store-tabs a,
  .store-social a,
  .search-store-products,
  .dokan-store-products-filter-search,
  .orderby-search,
  #dokan-form-contact-seller .dokan-form-control,
  #dokan-form-contact-seller input[type="submit"]
):focus-visible {
  outline: 3px solid var(--art-focus-ring) !important;
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .dokan-single-store .profile-frame .profile-info-summery-wrapper {
    padding-bottom: 2px;
  }

  .dokan-single-store .profile-frame .store-social-wrapper {
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .dokan-single-store .dokan-profile-frame-wrapper {
    border-radius: var(--art-radius-card);
  }

  .dokan-single-store .profile-frame,
  .dokan-single-store .profile-frame .profile-info-box > .profile-info-img {
    border-radius: var(--art-radius-media) var(--art-radius-media) 0 0;
  }

  .dokan-single-store .dokan-store-tabs,
  .dokan-single-store .dokan-store-tabs ul.dokan-list-inline {
    border-radius: 0 0 var(--art-radius-media) var(--art-radius-media);
  }

  .dokan-single-store .dokan-store-tabs ul.dokan-modules-button {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4px 16px 18px;
  }

  .dokan-single-store .dokan-store-tabs .dokan-follow-store-button,
  .dokan-single-store .dokan-store-tabs .dokan-share-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px !important;
  }

  .dokan-single-store .dokan-store-tabs ul.dokan-list-inline a {
    min-height: 48px;
    padding-inline: 10px;
  }

  .dokan-single-store .dokan-store-products-ordeby {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .dokan-single-store .dokan-store-products-filter-area .orderby-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 359px) {
  .dokan-single-store .dokan-store-tabs ul.dokan-modules-button,
  .dokan-single-store .dokan-store-products-ordeby {
    grid-template-columns: minmax(0, 1fr);
  }

  .dokan-single-store .dokan-store-products-filter-area .search-store-products,
  .dokan-single-store .dokan-store-products-filter-area .orderby-search {
    width: 100%;
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dokan-single-store .dokan-store-tabs :where(.dokan-follow-store-button, .dokan-share-btn, a),
  .dokan-single-store .dokan-store-products-filter-area .search-store-products,
  .dokan-store-wrap form#dokan-form-contact-seller input[type="submit"] {
    transition: none;
  }
}

.dokan-single-store .profile-info-head .profile-img img {
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1200px) {
  .dokan-single-store .profile-info-box.the-art-has-store-banner {
    aspect-ratio: 8 / 3;
    overflow: hidden;
  }

  .dokan-single-store .profile-info-box.the-art-has-store-banner > .profile-info-img {
    position: absolute;
    inset: 0;
    height: 100% !important;
  }

  .dokan-single-store .profile-info-box.the-art-has-store-banner .profile-info-summery-wrapper {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .dokan-single-store .profile-info-box.profile-layout-default.the-art-has-store-banner .profile-info-summery-wrapper {
    background-color: transparent;
  }

  .dokan-single-store .profile-info-box.the-art-has-store-banner .profile-info-summery {
    min-height: 0 !important;
  }
}

@supports not (aspect-ratio: 8 / 3) {
  .dokan-single-store .profile-info-box.the-art-has-store-banner > .profile-info-img {
    height: auto !important;
  }

  @media (min-width: 1200px) {
    .dokan-single-store .profile-info-box.the-art-has-store-banner {
      height: 0;
      padding-bottom: 37.5%;
    }

    .dokan-single-store .profile-info-box.profile-layout-layout2.the-art-has-store-banner {
      height: auto;
      padding-bottom: 0;
    }
  }
}
