/** Shopify CDN: Minification failed

Line 608:41 Unexpected "{"

**/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


@font-face {
  font-family: 'Inter';
  src: url("/cdn/shop/files/Inter_18pt-Regular.woff2?v=1770384915") format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url("/cdn/shop/files/Inter_18pt-Medium.woff2?v=1770386299") format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url("/cdn/shop/files/Inter_18pt-SemiBold.woff2?v=1770386299") format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url("/cdn/shop/files/Inter_18pt-Bold.woff2?v=1770386299") format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* Global Setting */
:root{
    /* Colors */
    --primary-color: #18449F;
    --button-color: #0165fc;
    --white-color: #ffffff;
    --bg-light-color: #F5F5F5;
    --bg-grey: #D9D9D9;
    --black-color: #000000;
    --border-color: #00000033;
    --red-color: #eb0000;
    --green-color: #09A332;
    --badge-bg-color:#efbd00;
    --badge-color: #121010;
    
    /* Box width */
    --box-width: var(--page-width);
}
h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: 'Inter', sans-serif;
  color: var(--black-color);
  color: rgb(var(--color-foreground));
  word-break: break-word;
}
h1, .h1 {
  font-size: clamp(
    1.05rem,
    0.3rem + 1.8vw,
    1.7rem
  );
  line-height: 1.25em;
}
h2, .h2 {
  font-size: clamp(1.0625rem, 1.017rem + 0.21vw, 1.1875rem);
  font-weight: 600;
  line-height: 1em;
}
h3, .h3{
    font-size: clamp(1.0625rem, 1.017rem + 0.21vw, 1.1875rem);
}

p, span, a, li, button{
    color: var(--black-color);
    font-family: 'Inter', sans-serif;
}
a{
    font-size: clamp(0.75rem, -0.177rem + 1.45vw, 0.9rem);
    text-decoration: none;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

button, .custom_button{
    line-height: normal;
    cursor: pointer;
    border: none;
    outline: none;
    background: var(--primary-color);
    border-radius: 6px;
    color: #fff;
    padding: 7px 9px;
}
.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
button:disabled,
button[aria-disabled='true'],
button.disabled,
.quantity__button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
/* Global Setting */


.page-width{
    width: 100%;
    max-width: var(--box-width);
    padding: 0 50px;
    margin: 0 auto;
}
@media (max-width: 1024px){
.page-width{
    padding: 0 15px;
}
}
.vertical-divider{
    background: #727272;
    width: 1px;
    height: 17px;
    margin: 0 10px;
}

/* Quantity Switcher */
.quantity-switcher{
    display: flex;
    width:100%;
}
.quantity-btn{
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    padding: 5.8px 0;
    text-align: center;
    cursor: pointer;
    width: 32.5%;
    -webkit-appearance: none;
    appearance: none;
}
.quantity-btn.minus{
    border-radius:4px 0px 0 4px;
}
.quantity-btn.plus{
    border-radius:0px 4px 4px 0px;
}
.quantity__button .svg-wrapper {
  pointer-events: none;
}
input.quantity-input{
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border: none;
    outline: none;
    padding: 6px;
    width: 60%;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}
.quantity-input:focus {
    outline: none;
    box-shadow: none;
}
input.quantity-input::-webkit-inner-spin-button,
input.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Product Card */
.product-card{
    width: calc((100% / 5) - 12px);
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height:auto;
    box-sizing:border-box;
}

.product-card .product-img{
    position: relative;
}
.product-card .product-img img{
    width: 100%;
    height: unset;
    aspect-ratio:2/2;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.product-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--badge-bg-color);
    font-size: 10px;
    color: var(--badge-color);
    padding: 5px 5px;
    border-radius:6px;
    cursor: pointer;
}
/* .product-card .product-content h3.product-title{
    line-height: 1.35em;
} */
/* .product-card .product-img .product-price{
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--white-color);
    position: absolute;
    left: 10px;
    bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1em;
    color: var(--black-color);
    border: 1px solid #c2c2c2;
} */

.product-card .product-img .product-addition-notification span{
    margin-right: 5px;
}
.product-card .product-content{
    padding: 10px;
    height: 100%;
    display: inline-flex;
    flex-direction: column;
}
input:focus {
    outline: none;
    box-shadow: none;
}
.product-card .product-content h3.product-title{
    font-size: 15px !important;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35em;
    color: var(--black-color);
    margin-bottom: 15px;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
    font-weight: 600;
    margin-bottom: 10px;
    margin-top:auto;
}

.product-price span,.product-price {
    color: #af0000;
}
.price-compare{
    font-size:13px;
}
.product-card .product-content button.product-buy-button{
    width: 100%;
    padding: 9px 0;
    border-radius: 6px;
    font-weight: 700;
    color: var(--white-color);
    background: var(--button-color);
    transition:opacity 0.2s ease, background ease 0.3s, color ease 0.3s;
}
.product-card .product-content button.product-buy-button:hover {
    background: var(--primary-color);
}
/* Hide button smoothly */
/* .product-card product-form {
    pointer-events: auto;
    transition: opacity 0.2s ease;
}    
.product-card.active product-form {
    opacity: 0;
    pointer-events: none;
} */
/* Quantity switcher */
.product-card .product-content .quantity-wrapper {
    width: calc(100% - 0px);
    display: none;
     /* position: absolute;
    bottom: 10px;
    left: 10px;
    transform: translateY(100%);
    pointer-events: none;
    opacity: 0; */
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}

/* Show switcher */
/* .product-card .product-content .quantity-wrapper.is-active {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
} */

.load-more-btn{
    display: block;
    font-size: 16px;
    width: fit-content;
    padding: 11px 20px;
    margin: 15px auto 0 auto;
}

/* Swiper Setting */
.swiper-button-prev,
.swiper-button-next{
    background: var(--black-color);
    color: var(--white-color);
    width: 35px;
    height: 35px;
    top: 36.5% !important;
    border-radius: 6px;
    cursor:pointer;
    transition:all 0.3s ease;
}
.swiper-button-prev svg,
.swiper-button-next svg{
    width: 20px;
    height: 20px;
}
.swiper-pagination{
    position: static;
}
.swiper-pagination-bullet{
    background: #a6a6a6;
    opacity: 1;
    margin-inline: 7px !important;
}
.swiper-pagination-bullet-active{
    background: var(--red-color);
}
/* Breadcrumbs */
.breadcrumbs-bar a,
.breadcrumbs-bar span{
    font-size: 15px;
    font-weight: 500;
    transition: all ease 0.3s;
    color: var(--primary-color);
}
.breadcrumbs-bar a:hover{
    color: var(--black-color);
}
.quantity:has(input[value="1"]) .minus {
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}

/* custom css for localization */
@media(min-width:768px) and (max-width:1024px){
    .medium-hide{
        display:none;
    }
    .product-card{
        width: calc((100% / 4) - 12px);
    }
    .product-card .product-img .product-addition-notification{  
        padding: 10px;
    }    
}
@media (max-width:767px){
    .product-card .badge {
        font-size:10px;
    }
    .small-hide{
        display:none;
    }
    .product-card{
        width: calc((100% / 2) - 5px);
    }
    .product-card .product-img img{
        aspect-ratio: 31 / 34;
        height: unset;
    }    
}
.btn-hover {
    position:relative;
}
/* .btn-hover::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center center;
    transform: scaleX(0.15);
    background: var(--white-color);
    opacity: 0;
}
.btn-hover:hover::after {
    animation: buttonHover 0.55s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes buttonHover{
    0% {
    opacity: 0.35;
    transform: scaleX(0.15);
    }

    100% {
        opacity: 0;
        transform: scaleX(0.55);
    }
} */
/* custom app css */
.glc-dropdown-btn.glc-switcher-btn.glc-switcher-btn--embedded.glc-switcher-btn--embedded-desktop {
    background: none;
}

.glc-dropdown-btn.glc-switcher-btn.glc-switcher-btn--embedded.glc-switcher-btn--embedded-desktop:hover {
    background: none !important;
    box-shadow: none !important;
}
.glc-switcher-btn--embedded-desktop{
    margin:0px !important;
}
.glc-switcher-btn__content{
    flex-direction:row-reverse;
}
.header-actions .glc-switcher-btn{
    border:unset ;
}
.header-actions .glc-switcher-btn:hover{
    border: unset !important;
    opacity: unset ;
}
.header-actions .glc-switcher-btn.glc-dropdown-btn__open{
    border:unset !important;
}
.glc-dropdown-expand--multi{
     border:unset !important;
     box-shadow:unset !important;
}
.glc-dropdown-btn.glc-switcher-btn.glc-switcher-btn--embedded.glc-switcher-btn--embedded-desktop.glc-dropdown-btn__open * {
    border-radius: 6px !important;
}
.glc-dropdown-expand, .glc-dropdown-expand *{
    border-radius:6px !important;
}
@media(max-width:1024px){
    .header-actions .glc-switcher-btn{
        display:none;
    }
}




/* component-form field */


.field:before{
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}
.field:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}
.field input,.field textarea
 {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.1rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  min-height: calc(var(--inputs-border-width) * 2);
  min-width: calc(7rem + (var(--inputs-border-width) * 2));
  position: relative;
  border: 0;
}


.field input:focus-visible ,.field textarea:focus-visible {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field input:focus,.field textarea:focus
 {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}
.field input,.field textarea{
  flex-grow: 1;
  text-align: left;
  padding: 0.8rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
  width:100%;
}

.field input:focus ~ label,
.field textarea:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field input:-webkit-autofill ~ label, 
.field textarea:-webkit-autofill ~ label {
  font-size: 0.7rem;
  top: calc(var(--inputs-border-width) + 0.35rem);
  left: calc(var(--inputs-border-width) + 1.3rem);
}

.field input:focus,
.field textarea:focus,
.field input:not(:placeholder-shown),
.field textarea:not(:placeholder-shown),
.field input:-webkit-autofill,
.field textarea:-webkit-autofill {
  padding: 1.4rem 0.9rem 0.5rem 1.3rem;
  margin: var(--inputs-border-width);
}


.field input::-webkit-search-cancel-button , .field textarea::-webkit-search-cancel-button  {
  display: none;
}


.field input::placeholder,.field textarea::placeholder  {
  opacity: 0;
}


.field input:-webkit-autofill ~ label,.field textarea::-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}
@media (forced-colors: active) {

 .field input:focus,.field textarea:focus{
    outline: transparent solid 1px;
  }
}
.field input:focus,.field textarea:focus,{
    outline: transparent solid 1px;
  }
  .field:hover.field:after{
    box-shadow: 0 0 0 calc(.05rem + var(--inputs-border-width)) rgba(var(--color-foreground), 1);
    outline: 0;
    border-radius: var(--inputs-radius);
}
