/** Shopify CDN: Minification failed

Line 602:2 Unexpected "8x"

**/
.custom-page-header {
    padding: 2rem 0 4rem;
    background: #000 !important;
  }    
  .custom-page-header__grid {
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap !important;
    justify-content: space-between;
  }
  .custom-page-header__heading {
    margin: 0;
    font-size:26px;
    color:#fff;
  }
  .custom-page-header__media {
    width: auto;
    height: auto;
    position: relative;
    display: block;
    min-height: 50px;
    text-align:right;
  }
  
  .custom-page-header__media img {
    width: 100%;
    height: auto;
    display: block;
    max-height:50px;
    max-width: 100%;
    object-fit: contain;
    visibility: visible;
  }
  
  .custom-page-header__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-page-header__media.placeholder {
  
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-page-header__media.media{
    background: transparent !important;
  }
  
  @media screen and (min-width: 750px) {
    .custom-page-header {
      padding: 4rem 0;
    }
    
    .custom-page-header__grid {
      gap: 4rem;
    }
  }
  
  /* Menu Navigation */
  .custom-page-menu {
    background-color: #dc2626;
    padding: 1rem 0;
  }
  
  .custom-page-menu__nav {
    width: 100%;
  }
  
  .custom-page-menu__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  
  .custom-page-menu__item {
    margin: 0;
  }
  
  .custom-page-menu__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    display: block;
    transition: opacity 0.2s ease;
  }
  
  .custom-page-menu__link:hover {
    opacity: 0.8;
  }
  
  @media screen and (max-width: 749px) {
    .custom-page-menu__list {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .custom-page-menu__link {
      font-size: 1.2rem;
    }
  }
  
  /* Content Section */
  .custom-page-content {
    padding: 4rem 0;
  }
  
  .custom-page-content__grid {
    align-items: center;
    gap: 2rem;
    padding:2em 0;
    flex-wrap:nowrap !important;
  }
  
  .custom-page-content__text-wrapper {
    margin-bottom: 2rem;
  }
  
  .custom-page-content__text-wrapper p {
    margin-bottom: 1.5rem;
  }
  
  .custom-page-content__button {
    margin-top: 2rem;
  }
  
  .custom-page-content__media {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    min-height: 200px;
    background:transparent !important;
  }
  
  .custom-page-content__media img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    visibility: visible;
  }
  
  .custom-page-content__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-page-content__media.placeholder {
    background: rgba(var(--color-foreground), 0.04);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-cate-title{
    background:#000;
    padding:1rem;
    font-size:25px;font-weight:bold;
    color:#fff;
    text-align:center;
  }
  @media screen and (min-width: 750px) {
    .custom-page-content {
      padding: 6rem 0;
    }
    
    .custom-page-content__grid {
      gap: 4rem;
    }
  }
  
  /* Promotional Blocks Section */
  .custom-page-promotional-blocks {
    padding: 4rem 0;
  }
  
  .custom-page-promotional-blocks__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Grid column variations - Mobile (default 1 column) */
  .custom-page-promotional-blocks__grid--2,
  .custom-page-promotional-blocks__grid--3,
  .custom-page-promotional-blocks__grid--4 {
    grid-template-columns: 1fr;
  }
  
  .custom-page-promotional-blocks__item {
    background: #ffffff;
    border: 0px solid #222;
  
    overflow: hidden;
    display: flex;
    flex-direction: column;
  
    height: 100%;
  }
  
  
  
  .custom-page-promotional-blocks__image {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-page-promotional-blocks__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
  }
  
  .custom-page-promotional-blocks__image.placeholder {
    min-height: 300px;
    background: rgba(var(--color-foreground), 0.04);
  }
  
  .custom-page-promotional-blocks__image.placeholder svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
  }
  
  .custom-page-promotional-blocks__description {
    padding: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.8);
    flex-grow: 1;
  }
  
  .custom-page-promotional-blocks__button-wrapper {
    padding: 0 1.5rem 1.5rem;
  }
  
  .custom-page-promotional-blocks__button {
    display: inline-block;
    width: 100%;
    padding: 0.5rem;
    background-color: #dc2626;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
   
    transition: background-color 0.2s ease, opacity 0.2s ease;
    border: 1px solid #000;
    cursor: pointer;
  }
  
  .custom-page-promotional-blocks__button:hover {
    background-color: #b91c1c;
    opacity: 0.9;
  }
  
  .custom-page-promotional-blocks__button:active {
    opacity: 0.8;
  }
  
  @media screen and (min-width: 750px) {
    .custom-page-promotional-blocks__grid--2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-page-promotional-blocks__grid--3 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-page-promotional-blocks__grid--4 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-page-promotional-blocks__grid {
      gap: 2.5rem;
    }
  }
  
  @media screen and (min-width: 990px) {
    .custom-page-promotional-blocks__grid--3 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media screen and (min-width: 990px) {
    .custom-page-promotional-blocks {
      padding: 6rem 0;
    }
    
    .custom-page-promotional-blocks__grid.custom-page-promotional-blocks__grid--2 {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .custom-page-promotional-blocks__grid.custom-page-promotional-blocks__grid--3 {
      grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .custom-page-promotional-blocks__grid.custom-page-promotional-blocks__grid--4 {
      grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .custom-page-promotional-blocks__grid {
      gap: 2rem;
    }
    
    .custom-page-promotional-blocks__description {
      font-size: 1.5rem;
      padding: 1rem;
      padding-top:0.5rem;
    }
    
    .custom-page-promotional-blocks__button-wrapper {
      padding:1rem ;
    }
  }

/* Content Accordion & Items Section */
.content-accordion-items {
  padding: 4rem 0;
}

.content-accordion-items .page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 750px) {
  .content-accordion-items .page-width {
    padding: 0 5rem;
  }
}

/* Custom Grid System - Not using theme grid */
.content-accordion-items__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .content-accordion-items__grid {
    grid-template-columns: 25% 75% !important;
    gap: 4rem;
  }
}

.content-accordion-items__left {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem;
  width: 100%;
  min-width: 0;
  order: 1;
}

.content-accordion-items__image {
  width: 100% !important;
  display: block !important;
  margin-bottom: 0;
  flex-shrink: 0;
}

.content-accordion-items__image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain;
  max-width: 100%;
}

.content-accordion-items__content {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
  margin-bottom: 0;
  display: block !important;
  flex-shrink: 0;
}

.content-accordion-items__content p {
  margin-bottom: 1.5rem;
}

.content-accordion-items__content p:last-child {
  margin-bottom: 0;
}

/* Accordion Styles - Simple white box design */
.content-accordion-items__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background-color: #ffffff;
  border: 2px solid #000;
  border-radius: 0.4rem;
  overflow: hidden;
  width: 100%;
}

.accordion-item__button {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #000;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s ease;
}

.accordion-item__button:hover {
  background-color: #000;
}

.accordion-item__button[aria-expanded="true"] {
  background-color: #dbdbdb;
}

.accordion-item__title {
  flex: 1;
  color:#fff;
  font-weight: 600;
}

.accordion-item__icon {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  transition: transform 0.2s ease;
  margin-left: 1rem;
}

.accordion-item__button[aria-expanded="true"] .accordion-item__icon {
  transform: rotate(0deg);
}
.accordion-item__button[aria-expanded="true"] .accordion-item__title,

.accordion-item__button[aria-expanded="true"] .accordion-item__icon{color:#000;}
.accordion-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
  padding: 0 2rem;
  background-color: #dbdbdb;
}

.accordion-item__text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
  padding: 1.5rem 0;
}

.accordion-item__text p {
  margin-bottom: 1rem;
}

.accordion-item__text p:last-child {
  margin-bottom: 0;
}

/* Right Side Items Rows */
.content-accordion-items__right {
  display: flex !important;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  min-width: 0;
  order: 2;
}

.content-accordion-items__right-title {
  margin-bottom: 1rem;
}

.content-accordion-items__right-title .page-cate-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(var(--color-foreground), 1);
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .content-accordion-items__right-title .page-cate-title {
    font-size: 3rem;
  }
}

.content-accordion-items__row {
  margin-bottom: 2rem;
}

.content-accordion-items__row:last-child {
  margin-bottom: 0;
}

.content-accordion-items__row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-accordion-items__row-grid--2 {
  grid-template-columns: 1fr;
}

.content-accordion-items__row-grid--3 {
  grid-template-columns: 1fr;
}

.content-accordion-items__row-grid--4 {
  grid-template-columns: 1fr;
}

.content-accordion-items__item {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .content-accordion-items {
    padding: 6rem 0;
  }
  
  .content-accordion-items__row-grid--1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  
  .content-accordion-items__row-grid--2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .content-accordion-items__row-grid--3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .content-accordion-items__row-grid--4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .content-accordion-items__row-grid {
    gap: 2rem;
  }
}

@media screen and (min-width: 990px) {
  .content-accordion-items__row-grid--1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  
  .content-accordion-items__row-grid--2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .content-accordion-items__row-grid--3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .content-accordion-items__row-grid--4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
  8x