/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 149:0 Unexpected "<"
Line 275:0 Unexpected "{"
Line 275:1 Expected identifier but found "%"
Line 304:4 Unexpected "{"
Line 304:5 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
<style>
 .custom-order-tab {
    padding: 20px;
 }
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tabs button {
  padding: 10px 20px;
  cursor: pointer;
  font-size:16px;
}
.tabs {
  border-top: 1px solid #0000000f;
  border-bottom: 1px solid #0000000f;
  padding: 10px 0px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tabs button.active {
  border-bottom: 1px solid #000;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Layout for account section */
.account-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 30px 0px 30px 0px;
}
.account-heading {
  flex: 1;
  max-width: 500px;
}
.account-heading h2 {
  margin-top: 0;
}
form.account-form {
  flex: 2;
  display: grid;
  gap: 20px;
  max-width: 700px;
  position: relative;
}
form.account-form label {
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: 'PPRightGrotesk-WideMedium';
}
form.account-form input,
form.account-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'PPRightGrotesk-WideMedium';
  font-weight: 300;
  font-size: 12px;
}
form.account-form .password-wrapper {
  position: relative;
}
form.account-form .password-wrapper input {
  padding-right: 120px;
}
form.account-form .change-password-inline-btn {
  position: absolute;
  top: 32px;
  right: 10px;
  padding: 6px 12px;
  font-size: 14px;
  background-color: #000;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}
form.account-form .change-password-inline-btn:hover {
  background-color: #333;
}

/* Save button bottom right */
form.account-form .form-actions {
  display: flex;
  justify-content: flex-end;
}
form.account-form .save-btn {
  padding: 10px 25px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}
form.account-form .save-btn:hover {
  background-color: #333;
}

div#address {
  padding: 30px 0px 30px 0px;
}
  .tabs .log-out svg {
    width: 1.5rem;
    margin-bottom: -.03rem;
    margin-right: 1rem;
}
.tabs .log-out a {
    display: inline-flex;
      align-items: center;
}
  #address p {
    font-size: 16px;
}


/* Responsive */
@media only screen and (max-width: 600px) {
  .account-layout {
    flex-direction: column;
  }
  form.account-form {
    width: 100%;
  }
}
</style>
.articles-wrapper-new {
    max-width: 1500px;
    margin: 0px 40px;
    padding: 30px 20px;
  }
  .blog_pagination ul.pagination__list.list-unstyled {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .blog_pagination.pagination-wrapper {
    width: 100%;
  }
  .blog_pagination ul.paginate_numbers {
    display: flex;
    gap: 20px;
  }
  li.prev_arrow span {
    transform: rotate(180deg);
  }
  li.prev_arrow, li.next_arrow {
    width: 150px !important;
    max-width: 110px !important;
  }
  .articles-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .articles-flex-container-new {
    display: flex;
    flex-wrap: wrap;
  }

  .article-card-new {
    padding: 8px;
    background-color: #fff;
    transition: box-shadow 0.3s;
    margin-bottom: 20px;
    width: 25%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack content vertically */
  }

  .article-card-new:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .article-card-new img {
    width: 100%;
    height: 200px; /* Fixed height for uniform size */
    object-fit: cover;
    margin-bottom: 15px;
  }

  .article-meta-new {
    font-size: 14px;
    color: #6F6F6F;
    margin-bottom: 5px;
    text-transform: uppercase;
  }

  .article-title-new {
    font-weight: 600;
    margin: 10px 0;
    color: #1E211D;
    font-size: 17px;
  }

  .article-author-date-new {
    font-family: More Pro;
    font-weight: 500;
    font-size: 13px;
    color: #1E211D;
    margin-top: auto; /* Ensure the author and date are at the bottom */
  }
  .pagination__item {
    color: #1E211D;
    font-size: 14px;
    text-transform: uppercase;
  }
  /* Ensure flex container is responsive */
  @media (max-width: 768px) {
    .articles-flex-container-new {
      justify-content: center;
    }

    .article-card-new {
      width: 100%; /* Make articles take full width on smaller screens */
    }
  }

  /* Default styling for the sort dropdown */
  #sort {
    background-color: transparent;
    padding: 8px 16px;
    border: none;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    outline: none; /* Remove the default outline when focused */
  }

  /* Change background color to white when "Newest First" is selected */
  #sort[value="date_desc"] {
    background-color: white;
  }

  /* Remove the border and outline on focus */
  #sort:focus {
    border: none;
    outline: none;
  }

   @media screen and (max-width: 768px){
     .articles-wrapper-new {
    margin: 0 20px;
    padding: 0px;
}
   }

/* CSS from snippet stylesheet tags */
{% if section.settings.new-menu-drawer %}
    @media screen and (min-width: 1023px){
      .menu-drawer-container.main-hamburger-menu {
    display: none;
}
    }
  @media screen and (max-width: 1023px){
      .menu-drawer-container.new-main-menu-drawer, .new-main-menu-drawer {
    display: none !important;
}
    }
  .new-main-menu-drawer summary.header__icon, .new-main-menu-drawer {
    text-decoration: unset !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 1px;
    font-family: var(--font-heading-family) !important;
}
  .inner-header-drawer {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 20px;
}
  .new-main-menu-drawer summary.header__icon, .new-menu.header__icon {
    width: 100% !important;
}
  .new-menu.menu-drawer__menu-item:hover{
    background: unset !important;
  }
    {% endif %}