/* SeloPOS Dokan Theme v1.1.0 */
html {
  scroll-behavior: auto
}

html.dokan-smooth-scroll {
  scroll-behavior: smooth
}

.dokan-body {
  margin: 0;
  background: var(--dokan-page);
  color: var(--dokan-text);
  font-family: var(--dokan-font);
  font-size: var(--dokan-base-size);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

.dokan-body * {
  box-sizing: border-box;
  font-family: var(--dokan-font) !important
}

.dokan-body img {
  max-width: 100%;
  display: block
}

.dokan-body a {
  color: inherit;
  text-decoration: none
}

.dokan-body button,
.dokan-body input,
.dokan-body select {
  font: inherit
}

.dokan-container {
  width: min(calc(100% - 40px), var(--dokan-container));
  margin-inline: auto
}

.dokan-main {
  min-height: 45vh
}

/* Header */
.dokan-header {
  position: relative;
  z-index: 50;
  background: var(--dokan-header-bg);
  border-bottom: 1px solid var(--dokan-border)
}

.dokan-header.is-sticky {
  position: sticky;
  top: 0
}

.dokan-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px
}

.dokan-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 130px;
  line-height: 1.15
}

.dokan-brand img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left center
}

.dokan-brand-name {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--dokan-heading)
}

.dokan-brand small {
  margin-top: 5px;
  color: var(--dokan-muted);
  font-size: 11px;
  font-weight: 400
}

.dokan-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0
}

.dokan-nav-item {
  position: relative
}

.dokan-nav-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--dokan-header-text);
  font-size: var(--dokan-nav-size);
  font-weight: 500;
  transition: background .18s ease, color .18s ease
}

.dokan-nav-link:hover,
.dokan-nav-item:focus-within>.dokan-nav-link {
  background: color-mix(in srgb, var(--dokan-primary) 8%, transparent);
  color: var(--dokan-primary)
}

.dokan-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 220px;
  padding: 8px;
  background: var(--dokan-surface);
  border: 1px solid var(--dokan-border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: .18s ease
}

.dokan-nav-item:hover>.dokan-dropdown,
.dokan-nav-item:focus-within>.dokan-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none
}

.dokan-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--dokan-text);
  font-size: 14px;
  font-weight: 400
}

.dokan-dropdown a:hover {
  background: var(--dokan-page);
  color: var(--dokan-primary)
}

.dokan-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto
}

.dokan-header-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  max-width: 190px
}

.dokan-header-contact small {
  font-size: 10px;
  color: var(--dokan-muted);
  margin-bottom: 4px
}

.dokan-header-contact strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--dokan-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.dokan-square-button,
.dokan-menu-button {
  border: 1px solid var(--dokan-border);
  background: var(--dokan-surface);
  color: var(--dokan-heading);
  border-radius: 9px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .18s ease
}

.dokan-square-button {
  font-size: 22px;
  line-height: 1
}

.dokan-square-button:hover,
.dokan-menu-button:hover {
  border-color: color-mix(in srgb, var(--dokan-primary) 42%, var(--dokan-border));
  color: var(--dokan-primary)
}

.dokan-cart-link {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--dokan-border);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dokan-heading)
}

.dokan-cart-link span {
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--dokan-primary);
  color: #fff;
  font-size: 11px
}

.dokan-menu-button {
  display: none;
  padding: 10px 9px;
  gap: 4px;
  align-content: center
}

.dokan-menu-button span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  display: block
}

.dokan-search-panel {
  border-top: 1px solid var(--dokan-border);
  background: var(--dokan-header-bg);
  padding: 14px 0
}

.dokan-search-form {
  display: flex;
  gap: 8px;
  max-width: 720px;
  margin-inline: auto
}

.dokan-search-form input,
.dokan-shop-toolbar input,
.dokan-shop-toolbar select {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--dokan-border);
  background: var(--dokan-surface);
  border-radius: 9px;
  padding: 0 13px;
  outline: none;
  color: var(--dokan-heading)
}

.dokan-search-form input {
  flex: 1
}

.dokan-search-form input:focus,
.dokan-shop-toolbar input:focus,
.dokan-shop-toolbar select:focus {
  border-color: color-mix(in srgb, var(--dokan-primary) 60%, var(--dokan-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--dokan-primary) 10%, transparent)
}

.dokan-search-form button,
.dokan-shop-toolbar button {
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--dokan-button-radius);
  background: var(--dokan-primary);
  color: #fff;
  font-weight: 500;
  cursor: pointer
}

.dokan-search-form button:hover,
.dokan-shop-toolbar button:hover {
  background: var(--dokan-primary-hover)
}

.dokan-mobile-panel {
  border-top: 1px solid var(--dokan-border);
  background: var(--dokan-surface)
}

.dokan-mobile-panel-inner {
  padding-block: 16px 20px
}

.dokan-mobile-nav {
  display: grid;
  gap: 3px
}

.dokan-mobile-menu-item>a,
.dokan-mobile-nav>a {
  display: block;
  padding: 9px 4px;
  color: var(--dokan-heading);
  font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--dokan-border) 70%, transparent)
}

.dokan-mobile-submenu {
  display: grid;
  padding: 4px 0 7px 14px
}

.dokan-mobile-submenu a {
  padding: 7px 0;
  color: var(--dokan-muted);
  font-size: 14px
}

.dokan-mobile-store-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
  color: var(--dokan-muted);
  font-size: 13px
}

/* Hero */
.dokan-hero {
  position: relative;
  min-height: var(--dokan-hero-height);
  background-image: linear-gradient(rgba(6, 13, 28, var(--dokan-hero-overlay)), rgba(6, 13, 28, var(--dokan-hero-overlay))), var(--dokan-hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--dokan-hero-text);
  isolation: isolate
}

.dokan-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, .04), rgba(0, 0, 0, .18));
  z-index: -1;
  pointer-events: none
}

.dokan-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  text-align: center
}

.dokan-hero.align-center .dokan-hero-inner {
  justify-content: center;
  text-align: center
}

.dokan-hero.align-center .dokan-hero-info {
  justify-content: center
}

.dokan-hero-copy {
  width: min(760px, 100%);
  padding: 54px 0;
  margin-inline: auto;
  text-align: center
}

.dokan-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  margin-bottom: 18px
}

.dokan-hero h1 {
  margin: 0 auto;
  color: var(--dokan-hero-text);
  font-size: var(--dokan-hero-title);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.025em;
  max-width: 720px
}

.dokan-hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 650px;
  color: color-mix(in srgb, var(--dokan-hero-text) 88%, transparent);
  font-weight: 400
}

.dokan-hero-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 26px
}

.dokan-hero-info>div {
  display: flex;
  flex-direction: column;
  min-width: 150px
}

.dokan-hero-info small {
  font-size: 11px;
  opacity: .75;
  margin-bottom: 4px
}

.dokan-hero-info strong {
  font-size: 14px;
  font-weight: 500
}

.dokan-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 19px;
  margin-top: 28px;
  border-radius: var(--dokan-button-radius);
  background: var(--dokan-primary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  transition: .18s ease
}

.dokan-primary-button:hover {
  background: var(--dokan-primary-hover);
  transform: translateY(-1px)
}

/* Sections */
.dokan-section {
  padding: var(--dokan-section-gap) 0
}

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

.dokan-section-heading h1,
.dokan-section-heading h2 {
  margin: 0;
  color: var(--dokan-heading);
  font-size: var(--dokan-section-title);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em
}

.dokan-section-heading p {
  margin: 7px 0 0;
  color: var(--dokan-muted);
  font-size: 14px;
  line-height: 1.6
}

.dokan-text-link {
  flex: 0 0 auto;
  color: var(--dokan-primary) !important;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--dokan-primary) 35%, transparent);
  padding-bottom: 2px
}

/* Products: 6 columns on desktop, 4 rows = first 24 products */
.dokan-product-grid,
.wbn-products-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: var(--dokan-product-gap) !important
}

.dokan-product-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--dokan-radius);
  background: var(--dokan-surface);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.dokan-product-card.style-border {
  border: 1px solid var(--dokan-border)
}

.dokan-product-card.style-clean {
  border: 0;
  background: transparent
}

.dokan-product-card.style-filled {
  border: 0;
  background: color-mix(in srgb, var(--dokan-surface) 76%, var(--dokan-page))
}

.dokan-product-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--dokan-primary) 24%, var(--dokan-border))
}

.dokan-body[data-card-shadow="soft"] .dokan-product-card,
.dokan-product-card {
  box-shadow: 0 4px 18px rgba(16, 24, 40, .045)
}

.dokan-product-link {
  display: block;
  height: 100%
}

.dokan-product-card.is-static {
  cursor: default
}

.dokan-product-card.is-static:hover {
  transform: none
}

.dokan-product-card.is-static:hover .dokan-product-photo img {
  transform: none
}

.dokan-product-photo {
  position: relative;
  overflow: hidden;
  background: #f0f2f5;
  border-bottom: 1px solid color-mix(in srgb, var(--dokan-border) 82%, transparent)
}

.dokan-product-photo.ratio-square {
  aspect-ratio: 1/1
}

.dokan-product-photo.ratio-portrait {
  aspect-ratio: 4/5
}

.dokan-product-photo.ratio-landscape {
  aspect-ratio: 4/3
}

.dokan-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease
}

.dokan-product-card:hover .dokan-product-photo img {
  transform: scale(1.025)
}

.dokan-product-content {
  padding: 13px 13px 14px
}

.dokan-product-card.no-photo .dokan-product-content {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.dokan-product-content h3 {
  margin: 0;
  color: var(--dokan-heading);
  font-size: var(--dokan-product-name);
  font-weight: 500;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.dokan-product-price {
  margin-top: 7px;
  color: var(--dokan-primary);
  font-size: var(--dokan-product-price);
  font-weight: 600;
  line-height: 1.3
}

.dokan-product-card.align-center .dokan-product-content {
  text-align: center
}

.dokan-load-more-wrap {
  text-align: center;
  margin-top: 30px
}

.dokan-load-more {
  min-width: 160px;
  min-height: 43px;
  padding: 9px 18px;
  border: 1px solid color-mix(in srgb, var(--dokan-primary) 35%, var(--dokan-border));
  border-radius: var(--dokan-button-radius);
  background: var(--dokan-surface);
  color: var(--dokan-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .18s ease
}

.dokan-load-more:hover:not(:disabled) {
  background: var(--dokan-primary);
  border-color: var(--dokan-primary);
  color: #fff
}

.dokan-load-more:disabled {
  cursor: default;
  opacity: .62
}

.dokan-empty {
  padding: 45px 24px;
  border: 1px dashed var(--dokan-border);
  border-radius: var(--dokan-radius);
  text-align: center;
  background: var(--dokan-surface)
}

.dokan-empty h3 {
  margin: 0;
  color: var(--dokan-heading);
  font-size: 20px;
  font-weight: 500
}

.dokan-empty p {
  margin: 7px 0 0;
  color: var(--dokan-muted)
}


/* Catalog mode: products can be displayed without any customer buying flow */
.dokan-catalog-mode form[data-selo-add-cart-form],
.dokan-catalog-mode .wbn-product-purchase-panel,
.dokan-catalog-mode [data-selo-submit-cart],
.dokan-catalog-mode [data-selo-card-add-cart],
.dokan-catalog-mode .selo-product-add-cart,
.dokan-catalog-mode .selo-product-order-now,
.dokan-catalog-mode [data-selo-cart-trigger] {
  display: none !important
}

.dokan-catalog-mode .wbn-product-purchase-actions {
  display: none !important
}

/* All business section */
.dokan-business-section {
  background: var(--dokan-surface);
  border-top: 1px solid var(--dokan-border);
  border-bottom: 1px solid var(--dokan-border)
}

.dokan-business-intro {
  max-width: 760px;
  margin-bottom: 30px
}

.dokan-business-intro>span {
  display: block;
  margin-bottom: 8px;
  color: var(--dokan-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em
}

.dokan-business-intro h2 {
  margin: 0;
  color: var(--dokan-heading);
  font-size: var(--dokan-section-title);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.015em
}

.dokan-business-intro p {
  margin: 12px 0 0;
  color: var(--dokan-muted);
  font-size: 15px;
  line-height: 1.75
}

.dokan-business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px
}

.dokan-business-card {
  padding: 20px;
  border: 1px solid var(--dokan-border);
  border-radius: var(--dokan-radius);
  background: var(--dokan-page)
}

.dokan-business-card h3 {
  margin: 0;
  color: var(--dokan-heading);
  font-size: 16px;
  font-weight: 500
}

.dokan-business-card p {
  margin: 7px 0 0;
  color: var(--dokan-muted);
  font-size: 13px;
  line-height: 1.6
}

/* Shop */
.dokan-shop-page {
  min-height: 60vh
}

.dokan-shop-heading {
  margin-bottom: 18px
}

.dokan-shop-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 210px auto;
  gap: 9px;
  margin-bottom: 22px;
  max-width: 760px
}

.dokan-shop-toolbar button {
  padding-inline: 20px
}

.dokan-pagination {
  margin-top: 28px
}

.dokan-pagination nav {
  display: flex;
  justify-content: center
}

.dokan-pagination svg {
  width: 18px;
  height: 18px
}

.dokan-pagination a,
.dokan-pagination span {
  font-family: var(--dokan-font)
}

/* Footer */
.dokan-footer {
  background: var(--dokan-footer-bg);
  color: var(--dokan-footer-text);
  padding-top: 54px;
  margin-top: 0
}

.dokan-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 42px
}

.dokan-footer h3,
.dokan-footer h4 {
  color: #fff;
  font-weight: 500
}

.dokan-footer h3 {
  font-size: 22px;
  margin: 0 0 22px
}

.dokan-footer h4 {
  font-size: 14px;
  margin: 0 0 13px
}

.dokan-footer p {
  margin: 0;
  color: color-mix(in srgb, var(--dokan-footer-text) 85%, transparent);
  font-size: 13px;
  line-height: 1.75
}

.dokan-footer-brand img {
  max-width: 160px;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  filter: brightness(0) invert(1)
}

.dokan-footer-brand h4 {
  margin-top: 18px
}

.dokan-footer-links,
.dokan-footer-info,
.dokan-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.dokan-footer-links a,
.dokan-footer-info a,
.dokan-footer-info span,
.dokan-social-links a {
  font-size: 13px;
  color: var(--dokan-footer-text);
  transition: color .18s ease
}

.dokan-footer-links a:hover,
.dokan-footer-info a:hover,
.dokan-social-links a:hover {
  color: #fff
}

.dokan-social-links {
  margin-top: 14px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px 13px
}

.dokan-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .11);
  padding: 16px 0
}

.dokan-footer-bottom .dokan-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: color-mix(in srgb, var(--dokan-footer-text) 78%, transparent)
}

/* Keep inherited ecommerce pages readable inside Dokan layout */
.dokan-body .site-container {
  width: min(calc(100% - 40px), var(--dokan-container));
  margin-inline: auto
}

.dokan-body .selo-category-page,
.dokan-body .selo-product-page,
.dokan-body .selo-cart-page,
.dokan-body .selo-checkout-page,
.dokan-body .selo-account-page {
  font-family: var(--dokan-font)
}

.dokan-body .selo-products-title,
.dokan-body .selo-category-page-title {
  font-weight: 600
}

@media (max-width:1180px) {
  .dokan-desktop-nav {
    gap: 2px
  }

  .dokan-nav-link {
    padding-inline: 9px
  }

  .dokan-header-contact {
    display: none
  }

  .dokan-product-grid,
  .wbn-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important
  }

  .dokan-footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px
  }

  .dokan-footer-grid>div:last-child {
    grid-column: 2/4
  }
}

@media (max-width:900px) {

  .dokan-container,
  .dokan-body .site-container {
    width: min(calc(100% - 30px), var(--dokan-container))
  }

  .dokan-header-inner {
    min-height: 68px;
    gap: 14px
  }

  .dokan-desktop-nav {
    display: none
  }

  .dokan-menu-button {
    display: grid
  }

  .dokan-header-actions {
    margin-left: auto
  }

  .dokan-brand {
    min-width: 0
  }

  .dokan-brand img {
    height: 100%;
  }

  .dokan-hero {
    min-height: var(--dokan-hero-mobile-height)
  }

  .dokan-hero-copy {
    padding: 42px 0
  }

  .dokan-hero h1 {
    font-size: clamp(31px, 6.2vw, 40px)
  }

  .dokan-hero-subtitle {
    font-size: 15px
  }

  .dokan-product-grid,
  .wbn-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
  }

  .dokan-business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .dokan-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px
  }

  .dokan-footer-grid>div:last-child {
    grid-column: auto
  }
}

@media (max-width:640px) {

  .dokan-container,
  .dokan-body .site-container {
    width: min(calc(100% - 24px), var(--dokan-container))
  }

  .dokan-header-inner {
    min-height: 64px
  }

  .dokan-brand-name {
    font-size: 18px
  }

  .dokan-brand small {
    display: none
  }

  .dokan-square-button,
  .dokan-menu-button {
    width: 38px;
    height: 38px
  }

  .dokan-cart-link {
    display: none
  }

  .dokan-search-form {
    display: grid;
    grid-template-columns: 1fr auto
  }

  .dokan-hero {
    background-position: 58% center
  }

  .dokan-hero-copy {
    padding: 36px 0
  }

  .dokan-hero h1 {
    font-size: 31px;
    line-height: 1.22
  }

  .dokan-hero-subtitle {
    font-size: 14px;
    line-height: 1.7
  }

  .dokan-hero-info {
    gap: 12px 22px;
    margin-top: 22px
  }

  .dokan-hero-info strong {
    font-size: 13px
  }

  .dokan-primary-button {
    margin-top: 24px;
    min-height: 42px
  }

  .dokan-section {
    padding: 44px 0
  }

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

  .dokan-section-heading h1,
  .dokan-section-heading h2,
  .dokan-business-intro h2 {
    font-size: 24px
  }

  .dokan-section-heading p {
    font-size: 13px
  }

  .dokan-text-link {
    font-size: 12px;
    margin-top: 7px
  }

  .dokan-product-grid,
  .wbn-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important
  }

  .dokan-product-content {
    padding: 11px
  }

  .dokan-product-card.no-photo .dokan-product-content {
    min-height: 96px
  }

  .dokan-product-content h3 {
    font-size: 14px
  }

  .dokan-product-price {
    font-size: 15px
  }

  .dokan-business-grid {
    grid-template-columns: 1fr
  }

  .dokan-business-card {
    padding: 17px
  }

  .dokan-shop-toolbar {
    grid-template-columns: 1fr 1fr
  }

  .dokan-shop-toolbar input {
    grid-column: 1/-1
  }

  .dokan-shop-toolbar button {
    padding-inline: 12px
  }

  .dokan-footer {
    padding-top: 42px
  }

  .dokan-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 34px
  }

  .dokan-footer-bottom .dokan-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px
  }
}

@media (max-width:390px) {

  .dokan-product-grid,
  .wbn-products-grid {
    gap: 8px !important
  }

  .dokan-product-content {
    padding: 10px 9px
  }

  .dokan-product-content h3 {
    font-size: 13px
  }

  .dokan-product-price {
    font-size: 14px
  }
}

.dokan-body[data-card-shadow="none"] .dokan-product-card {
  box-shadow: none
}

.dokan-body[data-card-shadow="medium"] .dokan-product-card {
  box-shadow: 0 10px 28px rgba(16, 24, 40, .10)
}