:host, :root {
  --brand-font: "Hind Siliguri", sans-serif;
  --brand-font-2: "Reem Kufi", serif;
  --brand-primary: #056946;
  --brand-generic-red: #FF5722;
  --brand-generic-green: #4CAF50;
  --brand-generic-yellow: #FFC107;
  --brand-generic-white: #EEEEEE;
  --brand-font-c900: #101010;
  --brand-font-c600: #7b7b7b;
  --brand-font-alt-c900: #EEEEEE;
  --brand-font-alt-c600: #868f9f;
  --brand-fg-primary: #7B7B7B;
  --brand-bg-primary: #F2F3F4;
  --brand-bg-secondary: #FDFDFD;
  --brand-bg-tertiary: #E2E2E2;
  --generic-white: #FFFFFF;
  --generic-black: #000000;
  --generic-font: sans-serif;
  --primary-font: var(--brand-font-2);
  --brand-col-1: #1E3D35;
  --brand-col-2: #EEEBE7;
  --dark-col-1: #181818;
  --dark-col-2: #020202;
  --light-col-1: #fcfcfc;
  --light-col-2: #f1f1f1;
  --light-col-3: #f9f9f9;
  --light-col-4: #eef2f2;
  --red-col-1: #da4a4a;
  --blue-col-1: #1689FE;
  --green-col-1: #18AC5D;
  --brown-col-1: #adaa3a;
  --gray-col-1: #dcdcdc;
  --gray-col-2: #707070;
  --website-primary-bg: var(--generic-white);
  --primary-website-text-color: var(--brand-col-1);
  --dashboard-primary-bg: var( --light-col-3);
  --primary-dashboard-text-color: var(--brand-col-1);
  --bg-col-1: var(--generic-white);
  --bg-col-2: var(--brand-col-1);
  --bg-col-3: var(--brand-col-2);
  --bg-col-4: var(--light-col-3);
  --text-col-1: var(--generic-black);
  --text-col-2: var(--generic-white);
  --text-col-3: var(--brand-col-1);
  --text-col-4: var(--brand-col-2);
  --border-col-1: var(--brand-col-1);
  --border-col-2: var(--brand-col-2);
  --link-col-1: #0066cc;
  --highlight-col-1: rgba(227, 227, 92, 0.5);
  --opacity-col-1: rgba(30, 61, 53, 0.5);
  --opacity-col-2: rgba(30, 61, 53, 0.3);
  --opacity-col-3: rgba(30, 61, 53, 0.1);
  --opacity-col-4: rgba(30, 61, 53, 0.8);
  --opacity-col-5: #F7F5F3;
  --shadow-1: 0px 64px 32px rgba(0, 0, 0, .04);
  --shadow-2: 0px 0px 12px rgba(0, 0, 0, .04);
  --shadow-3: 0px 0px 12px rgba(24, 24, 24, .05);
  --shadow-4: 0px 5px 10px rgba(0, 0, 0, .08);
  --shadow-5: 0px 10px 20px rgba(0, 0, 0, .08);
  --notification-red: var(--red-col-1);
}

:host-context(.dark), :root.dark {
  --brand-font-c900: #EEEEEE;
  --brand-font-c600: #868f9f;
  --brand-font-alt-c900: #101010;
  --brand-font-alt-c600: #7b7b7b;
  --brand-bg-primary: #0D0F11;
  --brand-bg-secondary: #191D23;
  --brand-bg-tertiary: #262C36;
  --brand-fg-primary: #868F9F;
}

/* Works on Chrome/Edge/Safari */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: var(--brand-bg-primary);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--brand-bg-tertiary);
  border: 2px solid var(--brand-bg-primary);
}

::-webkit-scrollbar-corner {
  background: var(--brand-bg-primary);
}

/* Generic Viewport Width for Grouping - v1.0.0 */
.vw-100, .vw-50, .vw-33 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.vw-100.center, .vw-50.center, .vw-33.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vw-100.right, .vw-50.right, .vw-33.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.vw-100.left, .vw-50.left, .vw-33.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.vw-100 {
  width: 100%;
}

.vw-50 {
  width: 50%;
}

.vw-33 {
  width: 33.333%;
}

@media (max-width: 768px) {
  .vw-50 {
    width: 100%;
  }
  .vw-33 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .vw-33 {
    width: 100%;
  }
}
body {
  font-family: var(--primary-font);
  color: var(--primary-website-text-color);
  background-color: var(--website-primary-bg);
}

[data-section=size] {
  max-width: 1280px;
  margin: 0 auto 0 auto;
}

[data-gap=side-gap] {
  margin: 0 auto;
  gap: 0 16px 0 16px;
  width: calc(100% - 32px);
}
@media (min-width: 744px) {
  [data-gap=side-gap] {
    gap: 0 32px 0 32px;
    width: calc(100% - 64px);
  }
}

[data-padding=y-axis] {
  padding: 48px 0;
  min-height: calc(100% - 96px);
}
@media (min-width: 744px) {
  [data-padding=y-axis] {
    padding: 64px 0;
    min-height: calc(100% - 128px);
  }
}
@media (min-width: 1240px) {
  [data-padding=y-axis] {
    padding: 96px 0 64px;
    min-height: calc(100% - 160px);
  }
}

.remove-item-animation {
  -webkit-animation: fade-out 350ms ease;
          animation: fade-out 350ms ease;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

@keyframes fade-out {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}
[data-attr=section-title] {
  width: 100%;
}
[data-attr=section-title] .main-title {
  gap: 8px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
[data-attr=section-title] .main-title span {
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
  display: inline-block;
}
[data-attr=section-title] .main-title::after {
  height: 3px;
  content: "";
  width: 100%;
  display: block;
  max-width: 248px;
  margin-bottom: 4px;
  background-color: var(--bg-col-2);
}
@media (min-width: 744px) {
  [data-attr=section-title] .main-title {
    gap: 14px;
  }
  [data-attr=section-title] .main-title span {
    font-size: 48px;
    line-height: 48px;
  }
  [data-attr=section-title] .main-title::after {
    height: 4px;
    margin-bottom: 10px;
  }
}

.skeleton {
  opacity: 0.7;
  border-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 8px !important;
}
.skeleton::before {
  content: "" !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
  border-radius: 0 !important;
  position: absolute !important;
  background-size: 0% !important;
  background-image: none !important;
  -webkit-animation: skeleton-loading 1s linear infinite alternate !important;
          animation: skeleton-loading 1s linear infinite alternate !important;
}
.skeleton::after {
  display: none !important;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
.overlay {
  position: relative;
}
.overlay::before {
  inset: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--opacity-col-1);
}

#page-banner {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#page-banner .banner-content-wrapper {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--text-col-4);
}
#page-banner .banner-content-wrapper .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
  color: var(--text-col-4);
  text-transform: uppercase;
}
#page-banner .banner-content-wrapper .subtitle {
  font-size: 20px;
  margin-top: 24px;
  line-height: 24px;
  text-align: center;
  color: var(--text-col-4);
}
#page-banner .banner-content-wrapper .banner-image {
  width: 90%;
  max-width: 1080px;
}
#page-banner .banner-content-wrapper .banner-image img {
  width: 100%;
  height: 100%;
}
@media (min-width: 744px) {
  #page-banner .banner-content-wrapper .title {
    font-size: 82px;
    line-height: 90px;
  }
}
@media (min-width: 1280px) {
  #page-banner {
    background-size: 100%;
  }
  #page-banner .banner-content-wrapper .banner-image {
    width: 100%;
  }
  #page-banner .banner-content-wrapper .title {
    font-size: 116px;
    line-height: 124px;
  }
}

[data-page=product] #page-banner {
  background-image: url("/asset/image/hero.jpg");
}

[data-page=about-us] #page-banner {
  background-image: url("/asset/image/my/about-us.webp");
}

[data-page=document] #page-banner {
  background-image: url("/asset/image/my/doc.webp");
}

.cart-item {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--opacity-col-3);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item .product-image {
  width: 56px;
  height: 64px;
  position: relative;
}
.cart-item .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-item .product-image .product-quantity {
  top: -4px;
  right: -8px;
  width: 22px;
  padding: 7px 0;
  font-size: 13px;
  cursor: pointer;
  line-height: 8px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  color: var(--text-col-4);
  height: 8px;
  background-color: var(--bg-col-2);
}
.cart-item .product-info {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 56px - 24px);
}
.cart-item .product-info .additional-info {
  gap: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 64px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 72px);
}
.cart-item .product-info .additional-info .product-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.cart-item .product-info .additional-info .product-detail {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item .product-info .additional-info .product-detail .info {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item .product-info .additional-info .product-detail .info .title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}
.cart-item .product-info .additional-info .product-detail .info .value {
  display: block;
  font-size: 16px;
  line-height: 16px;
}
.cart-item .product-info .additional-info .product-detail .info .value.color {
  width: 28px;
  height: 12px;
  background-color: var(--dynamic-product-col);
}
.cart-item .product-info .price {
  width: 72px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: right;
}
.cart-item .product-info .price .icon {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  margin-right: 2px;
}
.cart-item:hover {
  overflow: hidden;
}
.cart-item:hover .overlay-wrapper {
  opacity: 1;
}
.cart-item .overlay-wrapper {
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: var(--opacity-col-1);
}
.cart-item .overlay-wrapper .remove-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  line-height: 12px;
  color: var(--text-col-3);
  background-color: var(--bg-col-1);
}

#search-section {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: absolute;
  max-width: 794px;
  height: 95vh;
  border-radius: 8px 8px 0 0;
  background-color: var(--bg-col-1);
}
#search-section .popup-cross-btn {
  top: 12px;
  right: 12px;
  background-color: var(--opacity-col-3);
}
#search-section .search-container {
  width: 100%;
  margin: 0 auto;
  padding: 72px 0px 24px 0;
  height: calc(100% - 72px - 24px);
}
#search-section .search-container .search-title {
  top: 44px;
  left: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  color: var(--text-col-3);
}
#search-section .search-container bitl-input {
  width: 100%;
  --wrapper-height-lg: 38px;
  --wrapper-height-sm: 38px;
}
#search-section .search-container .search-box {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#search-section .search-container .search-box bitl-button {
  --btn-padding-xl: 16px;
  --btn-padding-xr: 16px;
}
#search-section .search-container .product-box {
  margin-top: 24px;
  overflow-y: auto;
  padding: 0 24px;
  height: calc(95vh - 24px - 72px - 24px - 38px);
}
#search-section .search-container .product-box::-webkit-scrollbar {
  width: 6px !important;
}
#search-section .search-container .product-box .product-item {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--opacity-col-3);
}
#search-section .search-container .product-box .product-item:last-child {
  border-bottom: none;
}
#search-section .search-container .product-box .product-item .product-image {
  width: 64px;
  height: 64px;
  cursor: pointer;
  position: relative;
}
#search-section .search-container .product-box .product-item .product-image img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
#search-section .search-container .product-box .product-item .product-info {
  gap: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#search-section .search-container .product-box .product-item .product-info .product-name {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  line-height: 16px;
  color: var(--text-col-3);
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
#search-section .search-container .product-box .product-item .product-info .product-price {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
#search-section .search-container .product-box .product-item .product-info .product-price .price {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  cursor: pointer;
  color: var(--text-col-3);
}
#search-section .search-container .product-box .product-item .product-info .product-price .price .icon {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 14px;
}
#search-section .search-container .product-box .product-item .product-info .product-price .price .amount {
  cursor: pointer;
}
#search-section .search-container .product-box .product-item .product-info .product-price .price.cross {
  opacity: 70%;
  cursor: pointer;
  position: relative;
}
#search-section .search-container .product-box .product-item .product-info .product-price .price.cross::after {
  inset: 0;
  width: 110%;
  height: 2px;
  content: "";
  margin: auto;
  cursor: pointer;
  position: absolute;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  background-color: var(--bg-col-2);
}
@media (min-width: 744px) {
  #search-section .search-container .search-title {
    left: 48px;
  }
  #search-section .search-container .search-box {
    padding: 0 48px;
  }
  #search-section .search-container .search-box bitl-button {
    --btn-padding-xl: 28px;
    --btn-padding-xr: 28px;
  }
  #search-section .search-container .product-box {
    padding: 0 48px;
  }
  #search-section .search-container .product-box .product-item .product-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #search-section .search-container .product-box .product-item .product-info .product-name {
    max-width: calc(100% - 182px);
  }
  #search-section .search-container .product-box .product-item .product-info .product-price {
    width: 182px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

body:has(delphi-dash-bar) #header-v2 {
  top: 44px;
}
body:has(delphi-dash-bar) #header-v2.body-scrolled {
  top: 0;
}

#header-v2 {
  top: 0;
  left: 0;
  z-index: 999999;
  position: fixed;
  padding: 16px 16px;
  width: calc(100% - 32px);
  background-color: transparent;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2.body-scrolled {
  padding: 6px 16px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  -webkit-box-shadow: var(--shadow-2);
          box-shadow: var(--shadow-2);
  background-color: var(--bg-col-1);
}
#header-v2.body-scrolled #header-container #menu-icon {
  gap: 6px;
  width: 28px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2.body-scrolled #header-container #menu-icon span {
  height: 1.6px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: var(--bg-col-2);
}
#header-v2.body-scrolled #header-container #header-logo {
  width: 36px;
  height: 36px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2.body-scrolled #header-container #header-logo svg {
  fill: var(--bg-col-2);
}
#header-v2.body-scrolled #header-container #visible-menus {
  margin-top: 4px;
}
#header-v2.body-scrolled #header-container #visible-menus .visible-menu-link {
  color: var(--text-col-3);
}
#header-v2.body-scrolled #header-container #visible-menus #cart-btn {
  background-image: url("/asset/icon/my/header/cart-icon-dark.svg");
}
#header-v2.body-scrolled #header-container #visible-menus #cart-btn #cart-item-count {
  color: var(--text-col-4);
  background-color: var(--bg-col-2);
}
#header-v2.body-scrolled #header-container #visible-menus .search-btn {
  background-image: url("/asset/icon/my/header/search-dark.svg");
}
#header-v2 #header-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1280px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header-v2 #header-container #menu-icon {
  gap: 6px;
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2 #header-container #menu-icon span {
  width: 100%;
  height: 1.5px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: var(--bg-col-3);
}
#header-v2 #header-container #header-logo {
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-right: -42px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2 #header-container #header-logo svg {
  width: 100%;
  height: 100%;
  cursor: pointer;
  fill: var(--bg-col-3);
}
#header-v2 #header-container #visible-menus {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header-v2 #header-container #visible-menus #contact-btn {
  display: none;
}
#header-v2 #header-container #visible-menus .visible-menu-link {
  font-size: 16px;
  line-height: 19px;
  color: var(--text-col-4);
}
#header-v2 #header-container #visible-menus #cart-btn {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/my/header/cart-icon.svg");
}
#header-v2 #header-container #visible-menus #cart-btn #cart-item-count {
  right: -8px;
  bottom: -4px;
  display: block;
  padding: 5px 0;
  font-size: 12px;
  cursor: pointer;
  line-height: 10px;
  width: 18px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  color: var(--text-col-3);
  height: 8px;
  background-color: var(--bg-col-3);
}
#header-v2 #header-container #visible-menus #cart-btn #cart-item-count:empty {
  display: none;
}
#header-v2 #header-container #visible-menus .search-btn {
  width: 24px;
  height: 24px;
  position: relative;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/my/header/search.svg");
}
#header-v2 #header-container #visible-menus .search-btn.phone-search-btn {
  display: block;
}
#header-v2 #header-container #visible-menus .search-btn.desktop-search-btn {
  display: none;
}
#header-v2 #header-container .hidden-wrapper {
  top: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--opacity-col-4);
}
#header-v2 #header-container .hidden-wrapper.fade-out {
  -webkit-animation: fade-out 500ms ease forwards;
          animation: fade-out 500ms ease forwards;
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#header-v2 #header-container .hidden-wrapper.open-hidden-wrapper {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-animation: fade-in 500ms ease forwards;
          animation: fade-in 500ms ease forwards;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#header-v2 #header-container .hidden-wrapper.open-hidden-wrapper .hidden-wrapper-container {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}
#header-v2 #header-container .hidden-wrapper .hidden-wrapper-container {
  padding: 16px;
  margin-left: auto;
  position: relative;
  height: calc(100% - 32px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 664px;
  background-color: var(--bg-col-1);
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
}
#header-v2 #header-container .hidden-wrapper .wrapper-close-btn {
  top: 32px;
  right: 16px;
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/my/header/cross.svg");
}
#header-v2 #header-container .hidden-wrapper .hidden-wrapper-logo {
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
}
#header-v2 #header-container .hidden-wrapper .hidden-wrapper-logo img {
  width: 100%;
  height: 100%;
}
#header-v2 #header-container .hidden-wrapper .item-list-container {
  width: 100%;
  overflow-y: auto;
  height: calc(100vh - 32px - 82px - 24px);
}
#header-v2 #header-container #hidden-menus {
  left: 0;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
}
#header-v2 #header-container #hidden-menus .hidden-wrapper-container {
  margin-left: unset;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item {
  width: 100%;
  overflow: hidden;
  height: 49px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item .menu-link {
  width: 100%;
  padding: 14px 0;
  font-size: 20px;
  line-height: 20px;
  display: inline-block;
  color: var(--text-col-3);
  border-bottom: 1px solid var(--border-col-1);
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item.has-dropdown .dropdown-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item.has-dropdown .dropdown-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
  margin-right: 4px;
  background-size: 100%;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/my/header/arrow-down.svg");
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item.has-dropdown:has(.open-dropdown-menu) .dropdown-btn {
  border-bottom: 0;
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item.has-dropdown:has(.open-dropdown-menu) .dropdown-btn::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#header-v2 #header-container #hidden-menus .item-list-container .menu-item.has-dropdown .dropdown-menu-container {
  width: 92%;
  margin-left: auto;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header-v2 #header-container #hidden-contact {
  right: 0;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}
#header-v2 #header-container #hidden-contact .hidden-wrapper-container {
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}
#header-v2 #header-container #hidden-contact .item-list-container .title-text {
  font-size: 16px;
  line-height: 22px;
}
#header-v2 #header-container #hidden-contact .item-list-container .title-text br {
  display: none;
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info {
  margin-top: 48px;
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item {
  gap: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 24px 0;
  font-size: 15px;
  line-height: 19px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text-col-3);
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item.phone::before {
  background-image: url("/asset/icon/my/header/phone.svg");
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item.email::before {
  background-image: url("/asset/icon/my/header/email.svg");
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item.whatsapp::before {
  background-image: url("/asset/icon/my/header/whatsapp.svg");
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item.messenger::before {
  background-image: url("/asset/icon/my/header/messenger.svg");
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item.instagram::before {
  background-image: url("/asset/icon/my/header/instagram.svg");
}
#header-v2 #header-container #hidden-contact .item-list-container .contact-info .contact-item.address::before {
  background-image: url("/asset/icon/my/header/address.svg");
}
#header-v2 #header-container #hidden-cart {
  right: 0;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}
#header-v2 #header-container #hidden-cart .hidden-wrapper-container {
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}
#header-v2 #header-container #hidden-cart .item-list-container {
  padding-top: 12px;
  height: calc(100vh - 32px - 82px - 24px - 64px - 12px);
}
#header-v2 #header-container #hidden-cart .cart-bottom-section {
  height: 64px;
  padding-top: 24px;
}
@media (min-width: 744px) {
  #header-v2.body-scrolled #header-container #header-logo {
    width: 40px;
    height: 40px;
  }
  #header-v2 #header-container #header-logo {
    width: 40px;
    height: 40px;
    margin-right: -92px;
  }
  #header-v2 #header-container #visible-menus #contact-btn {
    display: block;
  }
  #header-v2 #header-container #visible-menus .search-btn.phone-search-btn {
    display: none;
  }
  #header-v2 #header-container #visible-menus .search-btn.desktop-search-btn {
    display: block;
  }
  #header-v2 #header-container .hidden-wrapper .hidden-wrapper-container {
    padding: 16px 32px;
    height: calc(100% - 32px);
    max-width: 632px;
    background-color: var(--bg-col-1);
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
  }
  #header-v2 #header-container .hidden-wrapper .wrapper-close-btn {
    top: 40px;
    right: 32px;
  }
  #header-v2 #header-container .hidden-wrapper .hidden-wrapper-logo {
    width: 103px;
    height: 103px;
  }
  #header-v2 #header-container .hidden-wrapper .item-list-container {
    height: calc(100vh - 32px - 103px - 24px);
  }
  #header-v2 #header-container #hidden-contact .item-list-container .title-text {
    font-size: 20px;
    line-height: 28px;
  }
  #header-v2 #header-container #hidden-contact .item-list-container .title-text br {
    display: block;
  }
  #header-v2 #header-container #hidden-cart .item-list-container {
    height: calc(100vh - 32px - 103px - 24px - 64px - 12px);
  }
}
@media (min-width: 1280px) {
  #header-v2 {
    width: 100%;
    padding: 16px 0;
  }
  #header-v2.body-scrolled {
    padding: 8px 0;
  }
}

#social-tag {
  height: 320px;
  background-size: cover;
  color: var(--text-col-4);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/image/my/social-tag-bg.webp");
}
#social-tag .social-tag-content-wrapper {
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#social-tag .social-tag-content-wrapper .tag {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 16px;
}
#social-tag .social-tag-content-wrapper .tag-text {
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}
#social-tag .social-tag-content-wrapper .tag-text .bold {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  display: contents;
}
#social-tag .social-tag-content-wrapper .tag-text .tag-link {
  display: contents;
  color: var(--text-col-4);
}
@media (min-width: 744px) {
  #social-tag {
    height: 272px;
  }
}

#footer {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding-bottom: 64px;
  min-height: 292px;
  background-color: var(--bg-col-2);
}
#footer .footer-content-wrapper .footer-content {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 48px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#footer .footer-content-wrapper .footer-content .single-container {
  width: 272px;
}
#footer .footer-content-wrapper .footer-content .logo-box .footer-logo {
  width: 82%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#footer .footer-content-wrapper .footer-content .logo-box .footer-logo img {
  width: 100%;
  height: 100%;
}
#footer .footer-content-wrapper .footer-content .logo-box .social-links-box {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer-content-wrapper .footer-content .logo-box .social-links-box .social-link {
  width: 48px;
  height: 48px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#footer .footer-content-wrapper .footer-content .logo-box .social-links-box .social-link.facebook {
  background-image: url("/asset/icon/my/footer/facebook.svg");
}
#footer .footer-content-wrapper .footer-content .logo-box .social-links-box .social-link.instagram {
  background-image: url("/asset/icon/my/footer/instagram.svg");
}
#footer .footer-content-wrapper .footer-content .logo-box .social-links-box .social-link.tiktok {
  background-image: url("/asset/icon/my/footer/tiktok.svg");
}
#footer .footer-content-wrapper .footer-content .link-box {
  padding-top: 24px;
}
#footer .footer-content-wrapper .footer-content .link-box .link-title {
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 8px;
  margin-bottom: 24px;
  color: var(--text-col-4);
  border-bottom: 1px solid var(--border-col-2);
}
#footer .footer-content-wrapper .footer-content .link-box .link {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
  color: var(--text-col-4);
}
#footer .footer-content-wrapper .footer-content .link-box .link:last-child {
  margin-bottom: 0;
}
#footer [data-attr=copyright-section] {
  left: 0;
  right: 0;
  gap: 12px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 8px;
  position: absolute;
  padding-bottom: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer [data-attr=copyright-section] .copyright-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.3;
  color: var(--text-col-4);
}
#footer [data-attr=copyright-section] .copyright-text a {
  color: var(--text-col-4);
}
#footer [data-attr=copyright-section] [data-attr=bitlaab] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer [data-attr=copyright-section] [data-attr=bitlaab] a {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0px;
  color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer [data-attr=copyright-section] [data-attr=bitlaab] a::after {
  content: "";
  width: 84px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/my/footer/bitlaab.svg");
}
@media (min-width: 744px) {
  #footer {
    padding-bottom: 40px;
    min-height: 316px;
  }
  #footer .footer-content-wrapper .footer-content {
    gap: 48px;
  }
  #footer [data-attr=copyright-section] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #footer [data-attr=copyright-section] .copyright-text {
    font-size: 14px;
    line-height: 17px;
    text-align: start;
  }
  #footer [data-attr=copyright-section] [data-attr=bitlaab] a::after {
    width: 95px;
    height: 24px;
  }
}
@media (min-width: 1280px) {
  #footer .footer-content-wrapper .footer-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

body:has(.popup-open) {
  overflow: hidden;
}

[data-attr=popup] {
  inset: 0;
  height: 100vh;
  z-index: 99999;
  padding: 0 16px;
  display: none;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100vw - 32px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}
[data-attr=popup].popup-open {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: popup-fade-in 250ms ease;
          animation: popup-fade-in 250ms ease;
}
@-webkit-keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-attr=popup].close-animation {
  -webkit-animation: popup-fade-out 250ms ease;
          animation: popup-fade-out 250ms ease;
}
@-webkit-keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
[data-attr=popup] .popup-cross-btn {
  top: 24px;
  z-index: 2;
  right: 24px;
  width: 36px;
  height: 36px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-col-3);
  background-image: url("/asset/icon/my/header/cross.svg");
}
[data-attr=popup] .popup-content-container {
  max-width: 980px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
[data-attr=popup] .popup-content-container .popup-item .popup-item-slide-up {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}
[data-attr=popup] .popup-content-container .popup-item.item-show .popup-item-slide-up {
  z-index: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: toggle 500ms ease;
          animation: toggle 500ms ease;
}
@-webkit-keyframes toggle {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes toggle {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media print {
  body:has(.popup-open) {
    overflow: unset;
  }
  body [data-attr=popup] {
    padding: 0;
    height: 100%;
    position: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    color: #000000 !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
    background-color: transparent !important;
  }
  body [data-attr=popup] .popup-cross-btn {
    display: none;
  }
}
#hero-section {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url("/asset/image/hero.jpg");
}
#hero-section .hero-content-wrapper {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--text-col-4);
}
#hero-section .hero-content-wrapper .hero-logo {
  width: 90%;
  max-width: 1080px;
}
#hero-section .hero-content-wrapper .hero-logo img {
  width: 100%;
  height: 100%;
}
#hero-section .hero-content-wrapper .hero-title {
  font-size: 38px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
}
#hero-section .hero-content-wrapper .hero-subtitle {
  font-size: 18px;
  margin-top: 16px;
  line-height: 22px;
  text-transform: capitalize;
}
#hero-section .hero-content-wrapper .hero-button-wrapper {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#hero-section .hero-content-wrapper .hero-button-wrapper .hero-btn {
  font-size: 14px;
  line-height: 17px;
  padding: 8px 18px;
  color: var(--text-col-2);
  background-color: rgba(238, 235, 231, 0.4);
}
@media (min-width: 1280px) {
  #hero-section {
    background-size: 100%;
  }
  #hero-section .hero-content-wrapper .hero-logo {
    width: 100%;
  }
  #hero-section .hero-content-wrapper .hero-title {
    font-size: 42px;
    line-height: 84px;
  }
  #hero-section .hero-content-wrapper .hero-subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  #hero-section .hero-content-wrapper .hero-button-wrapper .hero-btn {
    font-size: 16px;
    line-height: 19px;
  }
}

.product-card {
  width: 100%;
  height: 496px;
  cursor: pointer;
  position: relative;
  max-width: 308px;
}
.product-card:hover .product-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.product-card .special-tag {
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  line-height: 14px;
  position: absolute;
  color: var(--text-col-3);
  background-color: rgba(238, 235, 231, 0.8);
}
.product-card .special-tag:empty {
  display: none;
}
.product-card .product-image {
  width: 100%;
  height: 420px;
  cursor: pointer;
  overflow: hidden;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.product-card .product-info {
  width: 100%;
  cursor: pointer;
  margin-top: 12px;
  color: var(--text-col-3);
}
.product-card .product-info .product-name {
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.product-card .product-info .product-price {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  margin-top: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-card .product-info .product-price .price {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}
.product-card .product-info .product-price .price .icon {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 14px;
}
.product-card .product-info .product-price .price .amount {
  cursor: pointer;
}
.product-card .product-info .product-price .price.cross {
  opacity: 70%;
  cursor: pointer;
  position: relative;
}
.product-card .product-info .product-price .price.cross::after {
  inset: 0;
  width: 110%;
  height: 2px;
  content: "";
  margin: auto;
  cursor: pointer;
  position: absolute;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  background-color: var(--bg-col-2);
}

#featured-product [data-attr=section-title],
#others-product-in-product-details [data-attr=section-title] {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#featured-product [data-attr=section-title] bitl-button,
#others-product-in-product-details [data-attr=section-title] bitl-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 900px) {
  #featured-product [data-attr=section-title],
  #others-product-in-product-details [data-attr=section-title] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#featured-product .content-container,
#others-product-in-product-details .content-container {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#category-section .content-container {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(1, 1fr);
}
#category-section .content-container .category-card {
  cursor: pointer;
}
#category-section .content-container .category-card:hover .category-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#category-section .content-container .category-card .category-image {
  width: 100%;
  height: 520px;
  cursor: pointer;
  overflow: hidden;
}
#category-section .content-container .category-card .category-image img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#category-section .content-container .category-card .category-name {
  margin: 16px;
  font-size: 28px;
  cursor: pointer;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: var(--text-col-3);
  text-transform: uppercase;
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media (min-width: 580px) {
  #category-section .content-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1020px) {
  #category-section .content-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1580px) {
  #category-section .content-container {
    grid-template-columns: repeat(4, 1fr);
  }
}