/* Shared Modern Store Header */
.store-header-wrap { position: sticky; top: 0; z-index: 1000; }
.store-header-wrap--unified .modern-store-header { display: none; }

/* Unified nav bar: logo + links + search/cart in one row */
.store-unified-nav {
  background: var(--section-nav-bg, var(--primary, #65971e));
  color: var(--section-nav-text, #fff);
}
.store-nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 6px 0;
}
.brand-logo--nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: auto;
  max-width: min(220px, 38vw);
  height: 48px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  box-shadow: none;
}
.brand-logo--nav img {
  display: block;
  width: auto;
  max-width: min(220px, 38vw);
  height: 48px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}
.brand-logo--nav .brand-logo-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--section-nav-text, #fff);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-nav-links-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.store-nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.store-nav-links::-webkit-scrollbar { display: none; }
.store-nav-links li a {
  display: block;
  padding: 10px 14px;
  color: var(--section-nav-text, #fff);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s;
}
.store-nav-links li a:hover,
.store-nav-links li a.active { background: rgba(255,255,255,.15); }
.store-header-actions--nav .store-header-icon-btn {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.store-header-actions--nav .store-header-icon-btn:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  transform: translateY(-1px);
}
.store-header-actions--nav .store-header-icon-btn .cart-badge { border-color: var(--section-nav-bg, #65971e); }
.store-header-wrap--unified .store-unified-nav.cloth-nav-bar,
.store-header-wrap--unified .store-unified-nav.jewelry-nav-bar,
.store-header-wrap--unified .store-unified-nav.elec-cat-nav {
  background: var(--section-nav-bg, var(--primary, #65971e));
  border: none;
}
.store-header-wrap .store-search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}

.store-header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.store-header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.store-header-icon-btn {
  position: relative; width: 44px; height: 44px; border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px; background: #fff; color: #222; display: inline-flex;
  align-items: center; justify-content: center; font-size: 17px; cursor: pointer;
  transition: all .2s ease; text-decoration: none;
}
.store-header-icon-btn:hover {
  color: var(--primary, #65971e); border-color: rgba(101,151,30,.35);
  background: rgba(101,151,30,.06); transform: translateY(-1px);
}
.store-header-icon-btn .cart-badge {
  position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px;
  padding: 0 4px; border-radius: 999px; background: var(--accent, #e63946); color: #fff;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.store-search-panel {
  position: absolute; left: 0; right: 0; top: 100%; pointer-events: none;
  opacity: 0; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease;
}
.store-search-panel.open { pointer-events: auto; opacity: 1; transform: translateY(0); }
.store-search-panel-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.35); backdrop-filter: blur(2px); z-index: -1;
}
.store-search-panel-inner {
  background: #fff; border-bottom: 1px solid #e5e7eb; box-shadow: 0 12px 32px rgba(0,0,0,.1); padding: 14px 0 18px;
}
.store-search-panel-form-wrap { display: flex; align-items: center; gap: 12px; }
.search-form-panel {
  display: flex; align-items: center; flex: 1; border: 2px solid #e5e7eb; border-radius: 14px;
  overflow: hidden; background: #f9fafb; transition: border-color .2s, box-shadow .2s, background .2s;
}
.search-form-panel:focus-within {
  border-color: var(--primary, #65971e); background: #fff; box-shadow: 0 0 0 4px rgba(101,151,30,.12);
}
.search-form-panel-icon { padding: 0 14px 0 16px; color: #9ca3af; font-size: 15px; }
.search-form-panel input {
  flex: 1; border: none; outline: none; background: transparent; padding: 14px 8px 14px 0; font-size: 16px; min-width: 0;
}
.search-form-panel button {
  border: none; background: var(--primary, #65971e); color: #fff; font-weight: 700; font-size: 14px;
  padding: 0 20px; align-self: stretch; cursor: pointer;
}
.search-form-panel button:hover { background: var(--primary-d, #557f19); }
.store-search-panel-close {
  width: 44px; height: 44px; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff;
  color: #6b7280; cursor: pointer; flex-shrink: 0;
}
.store-search-panel-close:hover { color: #111827; border-color: #d1d5db; background: #f3f4f6; }
body.search-panel-open { overflow: hidden; }
.store-live-search { position: relative; width: 100%; min-width: 0; }
.store-live-search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 1200;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12); overflow: hidden; max-height: 360px; overflow-y: auto;
}
.store-search-panel .store-live-search { flex: 1; max-width: none; margin: 0; }
.store-organic-search-wrap .store-live-search { flex: 1; }
.search-form-lg + .store-live-search-dropdown,
.store-live-search:has(.search-form-lg) .store-live-search-dropdown { z-index: 1050; }
.store-live-search-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  text-decoration: none; color: #111827; border-bottom: 1px solid #f3f4f6;
}
.store-live-search-item:hover, .store-live-search-item.active { background: rgba(101,151,30,.08); }
.store-live-search-item img, .store-live-search-icon {
  width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
  background: #f3f4f6; display: flex; align-items: center; justify-content: center; color: #9ca3af;
}
.store-live-search-body { min-width: 0; flex: 1; }
.store-live-search-name {
  display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.store-live-search-price { display: block; font-size: 12px; color: var(--primary, #65971e); font-weight: 700; }
.store-live-search-more, .store-live-search-empty {
  display: block; padding: 10px 12px; font-size: 13px; text-align: center;
  color: var(--primary-d, #166534); text-decoration: none; font-weight: 700;
}
.store-live-search-empty { color: #6b7280; font-weight: 500; }
.store-live-search-group-label {
  padding: 8px 12px 4px; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: #94a3b8; background: #f8fafc;
}
.store-live-search-popular { padding: 8px 12px 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.store-live-search-chip {
  display: inline-block; padding: 4px 10px; border-radius: 999px; background: #f1f5f9;
  color: #334155; font-size: 12px; font-weight: 600; text-decoration: none;
}
.store-live-search-chip:hover { background: rgba(101,151,30,.12); color: var(--primary-d, #166534); }
.store-live-search-wa {
  padding: 12px; margin: 0 8px 8px; border-radius: 12px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4); border: 1px solid #bbf7d0;
}
.store-live-search-wa-text {
  font-size: 12px; line-height: 1.5; color: #166534; margin: 0 0 10px; text-align: center;
}
.store-live-search-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: #25d366; color: #fff !important; font-weight: 800; font-size: 14px;
  text-decoration: none; box-shadow: 0 3px 10px rgba(37, 211, 102, .3);
}
.store-live-search-wa-btn:hover { background: #1ebe57; color: #fff; }
.store-live-search-wa-btn i { font-size: 20px; }
@media (max-width: 576px) {
  .store-live-search-wa-text { font-size: 13px; }
  .store-live-search-wa-btn { font-size: 15px; padding: 14px; min-height: 48px; }
}
@media (max-width: 991px) {
  .store-nav-row { flex-wrap: wrap; gap: 8px; min-height: auto; padding: 8px 0; }
  .brand-logo--nav { max-width: min(180px, 42vw); height: 42px; }
  .brand-logo--nav img { max-width: min(180px, 42vw); height: 42px; max-height: 42px; }
  .store-nav-links-wrap {
    order: 3;
    flex: 0 0 100%;
    display: none;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 4px;
    margin-top: 2px;
  }
  .store-unified-nav.open .store-nav-links-wrap { display: block; }
  .store-unified-nav.open .store-nav-links { flex-direction: column; overflow: visible; }
  .store-header-actions--nav { margin-left: auto; }
}
@media (max-width: 767px) {
  .store-header-row { min-height: 58px; }
  .store-header-icon-btn { width: 42px; height: 42px; border-radius: 11px; }
  .search-form-panel button { padding: 0 16px; font-size: 13px; }
  .brand-logo--nav { max-width: min(160px, 46vw); height: 40px; }
  .brand-logo--nav img { max-width: min(160px, 46vw); height: 40px; max-height: 40px; }
}

/* ==================== Organic 2-ROW HEADER ==================== */
.store-header-wrap--organic { position: sticky; top: 0; z-index: 1000; }
.store-header-wrap--organic .store-search-panel { z-index: 1001; }
/* Organic theme typography */
.store-header-wrap--organic,
.store-header-wrap--organic button,
.store-header-wrap--organic input,
.store-header-wrap--organic a {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
}
.store-organic-search-input {
  font-family: inherit;
  font-weight: 500;
}
.store-organic-menu li a {
  font-family: inherit;
  font-weight: 700;
}
.store-organic-browse-btn {
  font-family: inherit;
  font-weight: 700;
}

.store-organic-top {
  background: var(--section-header-bg, #fff);
  border-bottom: 1px solid #e5e7eb;
}
.store-organic-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 176px;
  padding: 10px 0;
}
.store-organic-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
}
.store-organic-logo img {
  height: 160px;
  max-width: min(640px, 48vw);
  width: auto;
  object-fit: contain;
  object-position: center;
}
.store-organic-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary, #65971e);
}

.store-organic-search-wrap {
  flex: 1;
  min-width: 0;
  max-width: 620px;
  margin: 0 auto;
}
.store-organic-search-form {
  display: flex;
  align-items: stretch;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.store-organic-search-form:focus-within {
  border-color: var(--primary, #65971e);
  box-shadow: 0 0 0 3px rgba(101,151,30,.1);
}
.store-organic-search-form input,
.store-organic-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  min-width: 0;
  background: transparent;
}
.store-organic-search-form button {
  width: 46px;
  border: none;
  background: var(--primary, #65971e);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.store-organic-search-form button:hover { background: var(--primary-d, #557f19); }

.store-organic-utils {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.store-organic-util-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--section-header-text, #374151);
  text-decoration: none;
  white-space: nowrap;
}
.store-organic-util-link i { color: var(--muted, #6b7280); font-size: 14px; }
.store-organic-util-link:hover { color: var(--primary, #65971e); }
.store-organic-util-divider {
  width: 1px;
  height: 22px;
  background: #d1d5db;
}

.store-organic-nav {
  background: var(--section-nav-bg, var(--primary, #65971e));
  color: var(--section-nav-text, #fff);
}
.store-organic-nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
}
.store-organic-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
  flex-shrink: 0;
}
.store-organic-browse-btn i { font-size: 16px; }

.store-organic-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2px;
  margin: 0 auto;
  padding: 0;
  flex: 1;
  min-width: 0;
  overflow: visible;
}
.store-organic-menu > li {
  position: relative;
  flex-shrink: 0;
}
.store-organic-menu li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--section-nav-text, #fff);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background .2s;
  white-space: nowrap;
}
.store-organic-menu li a:hover,
.store-organic-menu li a.active { background: rgba(255,255,255,.14); }
.store-sub-caret {
  font-size: 10px;
  opacity: .85;
}
.store-organic-menu .store-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  color: #1e293b;
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .18);
  z-index: 1200;
}
.store-organic-menu .has-sub:hover > .store-sub,
.store-organic-menu .has-sub:focus-within > .store-sub {
  display: block;
}
.store-organic-menu .store-sub li a {
  color: #1e293b;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 0;
  white-space: normal;
}
.store-organic-menu .store-sub li a:hover {
  background: #f1f5f9;
  color: var(--primary-d, #166534);
}
.store-organic-menu .store-sub-nested {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
}
.store-organic-menu .store-sub-nested a {
  padding-left: 28px;
  font-weight: 500;
  color: #475569;
  font-size: 12px;
}
.store-organic-menu .store-more > .store-sub {
  left: auto;
  right: 0;
}

.store-organic-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.store-organic-nav-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,.75);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
}
.store-organic-nav-icon:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.store-organic-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary-d, #557f19);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.store-organic-badge--nav {
  background: #fff;
  color: var(--primary-d, #166534);
  border-color: var(--section-nav-bg, var(--primary, #65971e));
}
.store-organic-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.store-organic-top-mobile {
  display: flex;
  margin-left: auto;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.store-organic-menu-fab {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 46px;
  height: 46px;
  padding: 4px 8px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--zz-blue, #245dea) 0%, var(--zz-blue-dark, #1a49c7) 100%);
  color: #fff;
  box-shadow: 0 6px 14px rgba(36, 93, 234, .28);
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}
.store-organic-menu-fab i { font-size: 16px; }
.store-organic-menu-fab span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.store-organic-menu-fab[aria-expanded="true"] {
  background: linear-gradient(180deg, var(--zz-blue-dark, #1a49c7) 0%, #1439a8 100%);
  box-shadow: 0 4px 10px rgba(36, 93, 234, .28);
}
.store-organic-top-menu-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.store-organic-mobile-menu-logo {
  display: flex;
  justify-content: center;
  padding: 4px 0 12px !important;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.15) !important;
}
.store-organic-mobile-menu-logo img {
  height: 72px;
  max-width: min(280px, 70vw);
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}
.store-organic-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.store-organic-mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.store-organic-mobile-sub {
  padding-left: 18px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  opacity: .9;
}
.store-organic-nav.open .store-organic-mobile-menu { display: flex; }
.store-organic-menu-backdrop { display: none; }

@media (max-width: 991px) {
  .store-organic-menu { display: none; }
  .store-organic-menu-fab { display: inline-flex; }
  .store-organic-top,
  .store-organic-header,
  .store-organic-container,
  .store-organic-top-row,
  .store-organic-logo {
    overflow: visible;
  }
  .store-organic-top-row {
    position: relative;
    min-height: 0;
    gap: 0 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    padding: 2px 0 4px;
  }
  .store-organic-logo {
    justify-content: flex-start;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    min-width: 0;
  }
  .store-organic-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 108px;
  }
  .store-organic-top-mobile {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin-left: 0;
    z-index: 3;
    flex-direction: column;
    gap: 6px;
  }
  .store-organic-menu-fab {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 2px 4px;
    box-shadow: 0 3px 8px rgba(36, 93, 234, .22);
  }
  .store-organic-menu-fab i { font-size: 14px; }
  .store-organic-menu-fab span { font-size: 8px; }
  .store-organic-icon-btn,
  .store-organic-cart-btn,
  .store-organic-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .store-organic-search-wrap {
    display: none;
  }
  .store-organic-nav-row { min-height: 46px; }
  .store-organic-nav-actions { display: none; }
  .store-organic-browse-btn span { font-size: 13px; }

  .store-organic-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .42);
    z-index: 1090;
  }
  .store-organic-nav.open .store-organic-menu-backdrop {
    display: block;
  }
  .store-organic-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(240px, 46vw);
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding: 12px 12px 24px;
    border-top: 0;
    background: #fff;
    box-shadow: -12px 0 32px rgba(15, 23, 42, .18);
    z-index: 1091;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
  }
  .store-organic-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 2px 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
  }
  .store-organic-mobile-menu-head span {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    letter-spacing: .02em;
  }
  .store-organic-mobile-close {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .store-organic-mobile-close:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
  }
  .store-organic-nav.open .store-organic-mobile-menu {
    display: flex;
    transform: translateX(0);
  }
  .store-organic-mobile-menu a {
    color: #1e293b;
    padding: 12px 6px;
    font-size: 14px;
  }
}
body.store-nav-open { overflow: hidden; }
@media (max-width: 767px) {
  .store-organic-browse-btn span { display: none; }
}
@media (max-width: 575px) {
  .store-organic-container { padding-left: 12px; padding-right: 12px; }
  .store-organic-top-row { min-height: 0; }
  .store-organic-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100px;
  }
}

/* ── Fixed developer credit bar (all storefront themes) ── */
.store-footer-dev-bar {
  background: #232424;
  color: #9ca3af;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
}
.store-footer-dev-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.store-footer-dev-copy {
  flex: 1;
  min-width: 180px;
  color: #9ca3af;
  font-weight: 500;
}
.store-footer-dev-credit {
  margin-left: auto;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
}
.store-footer-dev-credit a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.store-footer-dev-credit a:hover {
  text-decoration: underline;
  opacity: .9;
}
.site-footer .store-footer-dev-bar {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 20px;
  padding: 12px 0 10px;
  font-size: 14px;
}
.site-footer .store-footer-dev-copy {
  color: var(--section-footer-text, #eee);
}
.site-footer .store-footer-dev-credit {
  color: var(--section-footer-text, #eee);
}
.site-footer .store-footer-dev-credit a {
  color: var(--section-footer-heading, #fff);
  font-weight: 600;
}
@media (max-width: 575px) {
  .store-footer-dev-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .store-footer-dev-copy,
  .store-footer-dev-credit {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .prod-grid--5 > .prod-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.prod-img-fit--contain img,
.prod-img-fit--contain .gm-prod-img img,
.prod-img-fit--contain .sb-prod-img img,
.prod-img-fit--contain .kunjo-prod-img img,
.prod-img-fit--contain .cloth-prod-img img,
.prod-img-fit--contain .pj-card-img {
  object-fit: contain;
  object-position: center;
}

.prod-img-fit--cover img,
.prod-img-fit--cover .gm-prod-img img,
.prod-img-fit--cover .sb-prod-img img,
.prod-img-fit--cover .kunjo-prod-img img,
.prod-img-fit--cover .cloth-prod-img img,
.prod-img-fit--cover .pj-card-img {
  object-fit: cover;
  object-position: center;
}

.prod-card-actions--full .btn-buy {
  width: 100%;
}

.gm-prod-actions--full .gm-btn-buy,
.sb-prod-actions--full .sb-btn-buy {
  width: 100%;
}
