/** Shopify CDN: Minification failed

Line 613:1 Expected "}" to go with "{"

**/
:root {
  --pjb-primary: #3D8B6E;
  --pjb-primary-dark: #2E7D5F;
  --pjb-text: #1a1a1a;
  --pjb-text-muted: #666666;
  --pjb-bg: #ffffff;
  --pjb-bg-light: #f8f9fa;
  --pjb-border: #e0e0e0;
}

/* ========================================
   DESKTOP MEGA MENU WRAPPER
   ======================================== */
.pjb-mega-wrapper {
  position: relative;
  display: inline-block;
}

.pjb-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
}

.pjb-mega-trigger:hover {
  color: #666666;
}

.pjb-mega-trigger[aria-expanded="true"] {
  color: #e0e0e0;
}

.pjb-mega-trigger[aria-expanded="true"] .pjb-trigger-icon {
  transform: rotate(180deg);
}

.pjb-trigger-icon {
  transition: transform 0.25s ease;
}

/* ========================================
   DESKTOP DROPDOWN
   ======================================== */
.pjb-mega-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: var(--pjb-bg);
  border-top: 1px solid var(--pjb-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.pjb-mega-dropdown.open {
  max-height: 800px;
  opacity: 1;
  visibility: visible;
}

/* ========================================
   INNER GRID LAYOUT
   ======================================== */
.pjb-mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 400px;
}

/* Column 1 */
.pjb-col-1 {
  background: var(--pjb-bg-light);
  padding: 24px 16px;
  border-right: 1px solid var(--pjb-border);
}

.pjb-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pjb-text-muted);
  padding: 0 12px 12px;
  border-bottom: 1px solid var(--pjb-border);
  margin-bottom: 12px;
}

.pjb-group-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  margin-bottom: 4px;
}

.pjb-group-btn:hover,
.pjb-group-btn.active {
  background: var(--pjb-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pjb-group-btn.active .pjb-group-name {
  color: var(--pjb-primary);
}

.pjb-group-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pjb-bg);
  border-radius: 8px;
}

.pjb-group-btn.active .pjb-group-icon {
  background: #fff5eb;
}

.pjb-group-text {
  flex: 1;
}

.pjb-group-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--pjb-text);
  margin-bottom: 2px;
}

.pjb-group-count {
  display: block;
  font-size: 12px;
  color: var(--pjb-text-muted);
}

.pjb-group-arrow {
  color: var(--pjb-text-muted);
  opacity: 0;
  transition: all 0.25s ease;
}

.pjb-group-btn:hover .pjb-group-arrow,
.pjb-group-btn.active .pjb-group-arrow {
  opacity: 1;
  color: var(--pjb-primary);
}

/* Column 2 */
.pjb-col-2 {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
}

.pjb-subcol {
  display: none;
  animation: pjbFadeIn 0.25s ease;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.pjb-subcol.active {
  display: flex;
}

@keyframes pjbFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.pjb-subcol-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pjb-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pjb-primary);
  display: inline-block;
  align-self: flex-start;
}

/* No scroller on any tab — all show normally */
.pjb-subcol-scroll {
  flex: 1;
  overflow: visible;
  padding-right: 8px;
}

.pjb-subcol-scroll--state {
  flex: 1;
  max-height: 460px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}
.pjb-subcol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Sublinks */
.pjb-sublink {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  font-size: 13px;
  color: var(--pjb-text);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.pjb-sublink:hover {
  background: var(--pjb-bg-light);
  border-color: var(--pjb-border);
  color: var(--pjb-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pjb-sublink-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  padding: 10px;
  box-sizing: border-box;
}

.pjb-sublink-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.pjb-sublink:hover .pjb-sublink-img img {
  transform: scale(1.05);
}

.pjb-sublink-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
}

.pjb-view-all {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  background: #1a1a1a;
  border-radius: 6px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.pjb-view-all:hover {
  background: white;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

/* Column 3 */
.pjb-col-3 {
  background: var(--pjb-bg-light);
  padding: 24px;
  border-left: 1px solid var(--pjb-border);
}

.pjb-featured {
  display: none;
  animation: pjbFadeIn 0.3s ease;
}

.pjb-featured.active {
  display: block;
}

.pjb-featured-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  border-radius: 10px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.pjb-featured-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pjb-featured-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pjb-text);
  margin: 0 0 8px;
}

.pjb-featured-desc {
  font-size: 13px;
  color: var(--pjb-text-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.pjb-featured-btn {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.pjb-featured-btn:hover {
  background: white;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

/* Footer */
.pjb-mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--pjb-bg-light);
  border-top: 1px solid var(--pjb-border);
}

.pjb-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pjb-text-muted);
}

.pjb-footer-left a {
  color: var(--pjb-primary);
  font-weight: 600;
  text-decoration: none;
}

.pjb-footer-right {
  display: flex;
  gap: 24px;
}

.pjb-footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--pjb-text);
  text-decoration: none;
}

.pjb-footer-link:hover {
  color: var(--pjb-primary);
}

/* Overlay */
.pjb-mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
  top: 197px;
}

.pjb-mega-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   MOBILE — hide desktop mega, show mobile wrapper
   ======================================== */
@media screen and (max-width: 990px) {
  /* Hide desktop mega trigger */
  .pjb-mega-wrapper {
    display: none !important;
  }

/* Mobile mega panel — hidden by default, JS shows it */
.pjb-mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  height: calc(100vh - 62px);
  z-index: 99999;
  overflow-y: auto;
  background: white;
}

.pjb-mobile-menu-wrapper .pjb-mega-wrapper {
  display: block !important;
  width: 100%;
}

.pjb-mobile-menu-wrapper .pjb-mega-trigger {
  display: none !important;
}

.pjb-mobile-menu-wrapper .pjb-mega-dropdown {
  position: static !important;
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.pjb-mobile-menu-wrapper .pjb-mega-inner {
  display: flex;
  flex-direction: column;
  min-height: unset;
}

.pjb-mobile-menu-wrapper .pjb-col-1 {
  border-right: none;
  border-bottom: 1px solid var(--pjb-border);
  padding: 12px 16px;
}

.pjb-mobile-menu-wrapper .pjb-col-2 {
  padding: 12px 16px;
}

.pjb-mobile-menu-wrapper .pjb-col-3 {
  display: none !important;
}

.pjb-mobile-menu-wrapper .pjb-mega-overlay {
  display: none !important;
}

.pjb-mobile-menu-wrapper .pjb-subcol-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pjb-mobile-menu-wrapper .pjb-subcol-scroll {
  max-height: none;
  overflow: visible;
}

.pjb-mobile-menu-wrapper .pjb-mega-footer {
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px;
}

.pjb-mobile-menu-wrapper .pjb-subcol.active {
  display: flex !important;
}

/* Mobile Accordion Layout */
@media screen and (max-width: 990px) {
  .pjb-mobile-menu-wrapper .pjb-mega-inner {
    display: block;
  }

  .pjb-mobile-menu-wrapper .pjb-col-1 {
    padding: 0;
    border-bottom: none;
  }

  .pjb-mobile-menu-wrapper .pjb-col-2 {
    display: none !important;
  }

  .pjb-mobile-menu-wrapper .pjb-group-btn {
    border-bottom: 1px solid var(--pjb-border);
    border-radius: 0;
    padding: 14px 16px;
    margin-bottom: 0;
  }

  .pjb-mobile-menu-wrapper .pjb-group-arrow {
    opacity: 1;
    transform: rotate(90deg);
    transition: transform 0.25s ease;
  }

  .pjb-mobile-menu-wrapper .pjb-group-btn.active .pjb-group-arrow {
    transform: rotate(270deg);
  }

  .pjb-mobile-accordion-content {
    display: none;
    padding: 12px 16px;
    border-bottom: 1px solid var(--pjb-border);
    background: var(--pjb-bg-light);
  }

  .pjb-mobile-accordion-content.open {
    display: block;
  }

  .pjb-mobile-accordion-content .pjb-subcol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pjb-mobile-accordion-content .pjb-subcol-scroll {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .pjb-mobile-menu-wrapper .pjb-col-title {
    padding: 14px 16px 10px;
  }
}
@media screen and (max-width: 990px) {
  [data-id="#shopify-mb_cat"] {
    display: none !important;
  }
}
/* Force hide old All Molds sublist on mobile */
#item_menu_HXiJPX > .t4s-sub-menu {
  display: none !important;
}
.pjb-mobile-menu-wrapper {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99999;
  overflow-y: auto;
  background: white;
}
@media screen and (max-width: 990px) {
  #t4s-menu-drawer .t4s-sub-menu-nav li#item_menu_HXiJPX {
    order: -1;
  }
}
@media screen and (max-width: 990px) {
  .pjb-mobile-menu-wrapper .pjb-group-name {
    font-weight: 400 !important;
    color: #1a1a1a !important;
  }
  .pjb-mobile-menu-wrapper .pjb-group-btn.active .pjb-group-name {
    font-weight: 400 !important;
    color: #1a1a1a !important;
  }
}