/** Shopify CDN: Minification failed

Line 39:19 Expected identifier but found whitespace
Line 39:21 Unexpected "{"
Line 39:30 Expected ":"
Line 59:19 Expected identifier but found whitespace
Line 59:21 Unexpected "{"
Line 59:30 Expected ":"
Line 91:8 Expected identifier but found whitespace
Line 91:10 Unexpected "{"
Line 91:19 Expected ":"
Line 102:8 Expected identifier but found whitespace
... and 32 more hidden warnings

**/
:root {
  --primary-color: #2c3e50;
  --hover-color: #1a252f;
  --text-color: #333;
  --light-gray: #f9f9f9;
  --border-color: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --font-family: 'Assistant', sans-serif;
}

.mega-menu-item.active {
  position: relative;
}

.mega-menu-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: {{ section.settings.menu_hover_color }};
  animation: underlineGrow 0.3s ease-out;
}

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media screen and (max-width: 989.5px) {
  .mega-menu-navigation {
    display: none !important;
  }
}

.mega-menu-navigation {
  background-color: {{ section.settings.menu_bg_color }};
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
  position: relative;
  z-index: 2;
  font-family: var(--font-family);
}

.page-width {
  max-width: 100%;
  padding: 0 15px;
}

.mega-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  max-width: 1400px;
  margin: 0 auto;
}

.mega-nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 50px;
}

.mega-menu-item {
  font-size: 15px;
  font-weight: 500;
  color: {{ section.settings.menu_text_color }};
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: var(--border-radius);
}

.mega-menu-item:hover {
  color: {{ section.settings.menu_hover_color }};
  /*background-color: rgba(0, 0, 0, 0.05);*/
}

.mega-dropdown {
  position: relative;
  z-index: 1002;
}

.mega-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: {{ section.settings.menu_text_color }};
}

.mega-icon-down {
  margin-left: 6px;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.mega-dropdown.active .mega-icon-down,
.menu-wrapper.active .mega-icon-down {
  transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90vw;
  max-width: 1400px;
  max-height: 80vh;
  transform: translateY(10px);
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 1003;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow: hidden;
}

.mega-dropdown.active .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-content {
  max-height: calc(80vh - 60px);
  overflow-y: auto;
  padding-right: 15px;
}

.mega-dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.mega-dropdown-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mega-dropdown-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.mega-dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.mega-menu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mega-menu-col {
  width: calc(25% - 23px);
  min-width: 200px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .mega-menu-col {
    width: calc(25% - 23px);
  }
}

@media screen and (max-width: 900px) {
  .mega-menu-col {
    width: calc(33.333% - 20px);
  }
}

.mega-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--primary-color);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li {
  margin-bottom: 8px;
  position: relative;
}

.mega-list a {
  color: {{ section.settings.menu_text_color }};
  text-decoration: none;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
  padding: 8px 10px;
  border-radius: var(--border-radius);
}

.mega-list a:hover {
  color: {{ section.settings.menu_hover_color }};
  background-color: var(--light-gray);
}

.mega-arrow {
  color: #666;
  font-weight: 600;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.mega-submenu-parent.active .mega-arrow,
.mega-third-level-parent.active .mega-arrow {
  transform: rotate(90deg);
}

.mega-submenu-parent {
  position: relative;
}

.mega-submenu {
  display: none;
  position: absolute;
  top: -10px;
  left: 100%;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 1004;
  min-width: 220px;
  padding: 12px 0;
}

.mega-submenu-left {
  left: auto !important;
  right: 100% !important;
}

.mega-submenu-parent.active > .mega-submenu {
  display: block;
  animation: fadeInSubmenu 0.25s ease-in-out;
}

@keyframes fadeInSubmenu {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mega-submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-submenu-list li {
  margin: 0;
}

.mega-submenu-list a {
  padding: 8px 20px;
  display: block;
  white-space: nowrap;
  font-size: 14px;
  transition: var(--transition);
}

.mega-submenu-list a:hover {
  background-color: var(--light-gray);
  color: {{ section.settings.menu_hover_color }};
  padding-left: 25px;
}

.mega-third-level-parent {
  position: relative;
}

.mega-third-level-menu {
  display: none;
  position: absolute;
  top: -12px;
  left: 100%;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 1005;
  min-width: 250px;
  padding: 12px 0;
}

.mega-third-level-parent.active > .mega-third-level-menu {
  display: block;
  animation: fadeInSubmenu 0.25s ease-in-out;
}

.mega-third-level-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-third-level-list li {
  margin: 0;
}

.mega-third-level-list a {
  padding: 8px 20px;
  display: block;
  white-space: nowrap;
  font-size: 14px;
  transition: var(--transition);
}

.mega-third-level-list a:hover {
  background-color: var(--light-gray);
  color: {{ section.settings.menu_hover_color }};
  padding-left: 25px;
}

.mega-hot-deals {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 8px;
  padding-right: 8px;
}

.mega-new-badge-wrapper {
  position: absolute;
  top: -7px;
  left: -4px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.mega-new-badge {
  width: 30px;
  height: auto;
  display: block;
}

.mega-hot-deals-text {
  margin-left: 5px;
}

.mega-cta-button {
  display: flex;
  align-items: center;
  margin-right: 50px;
}

.mega-contact-button {
 background-color: var(--light-gray);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.mega-contact-button:hover {
   background-color: #242833;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Collection Dropdown Styles */
.menu-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1002;
}

.menu-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: {{ section.settings.menu_text_color }};
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1000px;
  max-width: 95vw;
  transform: translateY(10px);
  background: #fff;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  z-index: 1003;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-wrapper.active .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-inner {
  display: flex; 
  min-height: 350px;
}

.dropdown-left {
  width: 25%;
  border-right: 1px solid var(--border-color);
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.dropdown-left div {
  padding: 10px 15px;
  cursor: pointer;
  color: var(--text-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-left div:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: {{ section.settings.menu_hover_color }};
}

.dropdown-left div.active {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.dropdown-right {
  width: 75%;
  padding: 20px;
}

.heading-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.active-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.view-all-button {
  background-color: transparent;
  color: {{ section.settings.button_text_color }};
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.view-all-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: {{ section.settings.menu_hover_color }};
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.view-all-button:hover::after {
  transform: scaleX(1);
}

.view-all-button:hover {
  color: {{ section.settings.menu_hover_color }};
  transform: translateY(-1px);
}

.image-set {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
}

.image-set.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.image-card {
  width: calc(25% - 15px);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.image-card-content {
  padding: 15px;
}

.image-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.image-card p {
  font-size: 13px;
  color: #666;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 991px) {
  .mega-dropdown-menu {
    width: 95vw;
  }
  .dropdown {
    width: 700px;
  }
  .image-card {
    width: calc(50% - 10px);
  }
  .dropdown-left {
    width: 35%;
  }
  .dropdown-right {
    width: 65%;
  }
}

@media (max-width: 767px) {
  .mega-dropdown-menu {
    width: 95vw;
  }
  .dropdown {
    width: 95vw;
  }
  .image-card {
    width: 100%;
  }
  .dropdown-inner {
    flex-direction: column;
  }
  .dropdown-left, .dropdown-right {
    width: 100%;
  }
  .dropdown-left {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  .heading-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
  