 :root {
    --vape-accent: #ff8a00;
    --vape-accent-2: #ff6b6b;
    --vape-text: #1c1c1c;
    --vape-muted: #777;
    --vape-border: rgba(28, 28, 28, .12);
    --vape-font-body: Poppins, Arial, sans-serif;
    --vape-font-heading: Orbitron, Poppins, Arial, sans-serif;
  }

  body.vape-one-theme {
    font-family: var(--vape-font-body);
    letter-spacing: 0;
  }

  .vape-site-header {
    background: #fff;
    color: var(--vape-text);
    overflow: visible;
    position: sticky;
    top: 0;
    transition: box-shadow .24s ease, transform .24s ease;
    z-index: 1030;
  }

  .vape-site-header.is-scrolled {
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
  }

  .vape-site-header a {
    color: inherit;
    text-decoration: none;
  }

  .vape-header-row {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr) minmax(180px, 1fr);
    min-height: 88px;
  }

  .vape-header-logo-wrap,
  .vape-header-actions,
  .vape-header-menu {
    align-items: center;
    display: flex;
  }

  .vape-header-logo {
    display: inline-flex;
    width: 150px;
  }

  .vape-header-logo img,
  .vape-footer-logo img {
    height: auto;
    width: 100%;
  }

  .vape-main-menu {
    align-items: center;
    display: flex;
    gap: 38px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .vape-main-menu-link {
    align-items: center;
    color: inherit;
    display: inline-flex;
    font-family: Poppins, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 39px 0;
    transition: color .2s ease;
  }

  .vape-main-menu-link:hover {
    color: var(--vape-accent);
  }

  .vape-menu-caret {
    flex: 0 0 auto;
    transform: translateY(1px);
  }

  .vape-header-menu {
    justify-content: center;
    min-width: 0;
  }

  .vape-header-menu .navbar-nav {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 34px;
    justify-content: center;
    margin: 0 !important;
  }

  .vape-header-menu .navbar-nav > .nav-item {
    align-items: center;
    display: flex;
  }

  .vape-header-menu .nav-link {
    align-items: center;
    color: #1c1c1c;
    display: inline-flex;
    font-size: .95rem;
    font-weight: 700 !important;
    gap: 4px;
    line-height: 1;
    padding: 34px 0;
    position: relative;
    transition: color .2s ease;
    white-space: nowrap;
  }

  .vape-header-menu .nav-link::after {
    background: linear-gradient(90deg, var(--vape-accent), var(--vape-accent-2));
    bottom: 28px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .24s ease;
    width: 100%;
  }

  .vape-header-menu .nav-link:hover,
  .vape-header-menu .nav-item:hover > .nav-link {
    color: var(--vape-accent);
  }

  .vape-header-menu .nav-link:hover::after,
  .vape-header-menu .nav-item:hover > .nav-link::after {
    transform: scaleX(1);
  }

  .vape-header-menu .dropdown-menu {
    border: 0;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    margin-top: 0;
    padding: 0;
  }

  .vape-header-menu .dropdown-menu .card {
    border: 0;
    border-radius: 0;
  }

  .vape-header-menu .dropdown-menu .card-body {
    padding: 34px;
  }

  .vape-header-menu .dropdown-menu .group-name {
    color: #1c1c1c;
    font-size: .95rem;
  }

  .vape-header-menu .dropdown-menu .nav-link {
    color: #666;
    font-weight: 500 !important;
    padding: 7px 0;
  }

  .vape-header-menu .dropdown-menu .nav-link::after {
    display: none;
  }

  @media (min-width: 1200px) {
    .vape-header-menu .nav-item.dropdown:hover > .dropdown-menu {
      display: block;
    }
  }

  .vape-header-actions {
    gap: 21px;
    justify-content: flex-end;
  }

  .vape-header-icon {
    align-items: center;
    background: transparent;
    border: 0;
    color: #1c1c1c;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    position: relative;
    transition: color .2s ease, transform .2s ease;
    width: 32px;
  }

  .vape-header-icon:hover {
    color: var(--vape-accent);
    transform: translateY(-1px);
  }

  .vape-header-count {
    align-items: center;
    background: linear-gradient(180deg, var(--vape-accent), var(--vape-accent-2));
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 10px;
    font-weight: 700;
    height: 18px;
    justify-content: center;
    line-height: 1;
    min-width: 18px;
    padding: 0 5px;
    position: absolute;
    right: -6px;
    top: -6px;
  }

  .vape-account-menu {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
    min-width: 220px;
    padding: 10px;
  }

  .vape-account-menu .dropdown-item {
    border-radius: 6px;
    color: #333;
    font-size: .9rem;
    padding: 8px 10px;
  }

  .vape-account-menu .dropdown-item:hover {
    background: #fff2e7;
    color: var(--vape-accent);
  }

  .vape-mobile-trigger {
    align-items: center;
    background: transparent;
    border: 0;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    margin-right: 18px;
    padding: 0;
    width: 32px;
  }

  .vape-mobile-trigger span,
  .vape-mobile-trigger span::before,
  .vape-mobile-trigger span::after {
    background: #1c1c1c;
    content: "";
    display: block;
    height: 2px;
    transition: transform .2s ease;
    width: 24px;
  }

  .vape-mobile-trigger span {
    position: relative;
  }

  .vape-mobile-trigger span::before,
  .vape-mobile-trigger span::after {
    left: 0;
    position: absolute;
  }

  .vape-mobile-trigger span::before {
    top: -7px;
  }

  .vape-mobile-trigger span::after {
    top: 7px;
    width: 16px;
  }

  .vape-header-mobile {
    align-items: center;
    background: #fff;
    display: grid;
    grid-template-columns: 38px 38px 1fr 38px 38px;
    min-height: 60px;
    padding: 0 16px;
  }

  .vape-header-mobile .vape-header-logo {
    justify-self: center;
    width: 120px;
  }

  .vape-header-mobile .vape-mobile-trigger {
    margin: 0;
  }

  .vape-mobile-menu .offcanvas-header {
    border-bottom: 1px solid #eee;
    min-height: 70px;
  }

  .vape-mobile-menu .accordion-button,
  .vape-mobile-menu .nav-link,
  .vape-mobile-menu .nav-item-text {
    color: #1c1c1c;
    font-weight: 700;
  }

  .vape-mobile-hot {
    border-top: 1px solid #eee;
    margin-top: 24px;
    padding-top: 20px;
  }

  .vape-mobile-hot strong {
    display: block;
    margin-bottom: 12px;
  }

  .vape-mobile-hot a {
    border: 1px solid #eee;
    border-radius: 999px;
    display: inline-flex;
    font-size: .85rem;
    margin: 0 8px 8px 0;
    padding: 6px 13px;
  }

  .vape-site-footer {
    background: #fff;
    color: #1c1c1c;
    border-top: 1px solid #eee;
  }

  .vape-site-footer a {
    color: inherit;
    text-decoration: none;
  }

  .vape-footer-main {
    padding: 52px 0 20px;
  }

  .vape-footer-top {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(180px, 5fr) minmax(360px, 7fr);
    margin-bottom: 76px;
  }

  .vape-footer-logo {
    display: inline-flex;
    max-width: 150px;
  }

  .vape-footer-newsletter {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(220px, 1fr) minmax(300px, 1.3fr);
  }

  .vape-footer-newsletter h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
  }

  .vape-footer-subscribe {
    align-items: center;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    display: flex;
    min-height: 58px;
    overflow: hidden;
  }

  .vape-footer-subscribe input {
    border: 0;
    flex: 1;
    font-size: .95rem;
    min-width: 0;
    outline: 0;
    padding: 0 24px;
  }

  .vape-footer-subscribe button {
    align-self: stretch;
    background: linear-gradient(180deg, var(--vape-accent), var(--vape-accent-2));
    border: 0;
    color: #fff;
    font-weight: 700;
    min-width: 132px;
    padding: 0 28px;
  }

  .vape-footer-grid {
    display: grid;
    gap: 44px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vape-footer-title {
    align-items: center;
    background: transparent;
    border: 0;
    color: #1c1c1c;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    justify-content: space-between;
    margin: 0 0 22px;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  .vape-footer-title span {
    display: none;
  }

  .vape-footer-panel p,
  .vape-footer-panel li {
    color: #777;
    font-size: .95rem;
    line-height: 1.8;
    margin: 0 0 7px;
  }

  .vape-footer-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .vape-footer-panel a {
    color: #777;
    transition: color .2s ease, padding-left .2s ease;
  }

  .vape-footer-panel a:hover {
    color: var(--vape-accent);
    padding-left: 4px;
  }

  .vape-footer-bottom {
    align-items: center;
    border-top: 1px solid #eee;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 38px 0;
  }

  .vape-footer-social {
    display: flex;
    gap: 18px;
  }

  .vape-footer-social a {
    align-items: center;
    color: #1c1c1c;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    transition: color .2s ease, transform .2s ease;
    width: 30px;
  }

  .vape-footer-social a:hover {
    color: var(--vape-accent);
    transform: translateY(-2px);
  }

  .vape-footer-copyright {
    color: #777;
    font-size: .95rem;
    text-align: center;
  }

  .vape-footer-payment {
    text-align: right;
  }

  .vape-footer-payment img {
    height: auto;
    max-width: 260px;
    width: 100%;
  }

  @media (max-width: 1199px) {
    .vape-header-row {
      grid-template-columns: 1fr auto;
    }

    .vape-header-actions {
      gap: 15px;
    }

    .vape-footer-top,
    .vape-footer-newsletter {
      grid-template-columns: 1fr;
    }

    .vape-footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .vape-footer-main {
      padding: 48px 0 36px;
    }

    .vape-footer-top {
      gap: 24px;
      margin-bottom: 28px;
      text-align: center;
    }

    .vape-footer-logo-block {
      text-align: center;
    }

    .vape-footer-newsletter h3 {
      font-size: 1.5rem;
    }

    .vape-footer-subscribe {
      border-radius: 8px;
      display: grid;
      grid-template-columns: 1fr;
      overflow: visible;
    }

    .vape-footer-subscribe input {
      min-height: 52px;
    }

    .vape-footer-subscribe button {
      border-radius: 0 0 8px 8px;
      min-height: 48px;
    }

    .vape-footer-grid {
      gap: 0;
      grid-template-columns: 1fr;
    }

    .vape-footer-column {
      border-top: 1px solid #eee;
      padding: 18px 0;
    }

    .vape-footer-title {
      margin: 0;
    }

    .vape-footer-title span {
      display: block;
      height: 14px;
      position: relative;
      width: 14px;
    }

    .vape-footer-title span::before,
    .vape-footer-title span::after {
      background: #1c1c1c;
      content: "";
      left: 0;
      position: absolute;
      top: 6px;
      transition: transform .2s ease;
      width: 14px;
      height: 2px;
    }

    .vape-footer-title span::after {
      transform: rotate(90deg);
    }

    .vape-footer-column.is-open .vape-footer-title span::after {
      transform: rotate(0deg);
    }

    .vape-footer-panel {
      display: none;
      padding-top: 16px;
    }

    .vape-footer-column.is-open .vape-footer-panel {
      display: block;
    }

    .vape-footer-bottom {
      grid-template-columns: 1fr;
      justify-items: center;
      padding: 28px 0;
      text-align: center;
    }

    .vape-footer-payment {
      text-align: center;
    }
  }

  body.page-home,
  body.template-index {
    background: #1e1e20;
    overflow-x: hidden;
    position: relative;
    --vape-header-glow: linear-gradient(90deg, rgba(30, 30, 32, 0) 0%, rgba(142, 66, 66, .38) 28%, rgba(128, 70, 142, .54) 58%, rgba(30, 30, 32, 0) 100%);
    --vape-header-glow-time: 25s;
  }

  body.page-home::before,
  body.template-index::before {
    animation: VapeBgGradient var(--vape-header-glow-time) linear infinite;
    aspect-ratio: 1 / .196;
    background: var(--vape-header-glow);
    background-size: 400% 400%;
    border-radius: 100%;
    content: "";
    filter: blur(54px);
    left: 50%;
    opacity: .4;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    width: 80%;
  }

  @keyframes VapeBgGradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  body.page-home #app,
  body.page-home #home-modules-box,
  body.page-home .modules-box {
    background: transparent;
    margin: 0;
    padding: 0;
  }

  :root {
    --vape-accent: #d253ff;
    --vape-accent-2: #ff4da9;
  }

  .vape-site-header {
    background: transparent;
    border-bottom: 0;
    color: #fff;
    font-family: Poppins, Arial, sans-serif;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: background .24s ease, box-shadow .24s ease;
    z-index: 1030;
  }

  .vape-site-header.is-scrolled {
    background: #1e1e20;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  }

  body:not(.page-home):not(.template-index) .vape-site-header {
    background: #1e1e20;
    position: sticky;
  }

  .vape-header-desktop {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    transition: background .24s ease;
  }

  .vape-header-desktop::before {
    animation: VapeBgGradient var(--vape-header-glow-time) linear infinite;
    aspect-ratio: 1 / .196;
    background: var(--vape-header-glow);
    background-size: 400% 400%;
    border-radius: 100%;
    content: "";
    filter: blur(54px);
    left: 50%;
    opacity: .4;
    pointer-events: none;
    position: absolute;
    top: -16px;
    transform: translate(-50%, -50%);
    width: 80%;
  }

  .vape-site-header.is-scrolled .vape-header-desktop::before {
    opacity: 0;
  }

  .vape-header-desktop .container-fluid {
    position: relative;
    z-index: 1;
  }

  .vape-site-header .container-fluid {
    max-width: none !important;
    padding-left: 75px;
    padding-right: 75px;
    width: 100%;
  }

  .vape-header-row {
    grid-template-columns: minmax(180px, 1fr) minmax(520px, auto) minmax(180px, 1fr);
    min-height: 128px;
  }

  .vape-header-logo {
    align-items: center;
    height: 57px;
    width: 150px;
  }

  .vape-header-logo img {
    height: 100%;
    object-fit: contain;
    width: 100%;
  }

  .vape-header-menu {
    justify-content: center;
    transform: translateX(-10px);
  }

  .vape-main-menu {
    gap: 4px;
  }

  .vape-main-menu > li {
    align-items: center;
    display: inline-flex;
    min-height: 128px;
    padding: 0 20px;
    position: relative;
  }

  .vape-main-menu-link {
    color: #fff;
    display: block;
    gap: 0;
    font-weight: 400;
    height: 24px;
    line-height: 24px;
    padding: 0;
    position: relative;
  }

  .vape-main-menu > li:first-child .vape-main-menu-link {
    font-weight: 600;
  }

  .vape-main-menu-link:hover,
  .vape-header-icon:hover {
    color: #ff4da9;
  }

  .vape-menu-caret {
    left: calc(100% + 9px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .vape-mega-menu {
    background: rgba(30, 30, 32, .92);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    color: #fff;
    left: 50%;
    min-width: 720px;
    opacity: 0;
    padding: 28px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translate(-50%, 14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    visibility: hidden;
    z-index: 30;
  }

  .vape-main-menu > li:hover .vape-mega-menu,
  .vape-main-menu > li:focus-within .vape-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .vape-dropdown-menu {
    background: #fff;
    border: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    color: #1c1c1c;
    left: 0;
    min-width: 270px;
    opacity: 0;
    padding: 13px 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    visibility: hidden;
    z-index: 30;
  }

  .vape-main-menu > li:hover .vape-dropdown-menu,
  .vape-main-menu > li:focus-within .vape-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .vape-dropdown-menu a {
    color: #1c1c1c;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 28px;
  }

  .vape-dropdown-menu a:hover {
    color: #ff4da9;
  }

  .vape-mega-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 1fr 220px;
  }

  .vape-mega-menu h3 {
    color: #fff;
    font-family: var(--vape-font-heading);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
  }

  .vape-mega-menu a {
    color: rgba(255, 255, 255, .78);
    display: block;
    font-size: 14px;
    line-height: 1.4;
    padding: 7px 0;
  }

  .vape-mega-menu a:hover {
    color: #ff4da9;
  }

  .vape-mega-promo {
    align-items: center;
    background: #17171a;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .vape-mega-promo img {
    max-height: 190px;
    object-fit: contain;
    transform: scale(1.08);
  }

  .vape-header-menu .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600 !important;
    line-height: 21px;
    padding: 39px 0;
  }

  .vape-site-header {
    font-size: 14px;
    line-height: 21px;
  }

  .vape-header-menu .nav-link::after {
    background: linear-gradient(89deg, #d253ff, #ff4da9 52%);
  }

  .vape-header-menu .nav-link:hover,
  .vape-header-menu .nav-item:hover > .nav-link {
    color: #ff4da9;
  }

  .vape-header-menu .dropdown-menu,
  .vape-account-menu {
    background: #2b282f;
    color: #fff;
  }

  .vape-header-menu .dropdown-menu .group-name,
  .vape-header-menu .dropdown-menu .nav-link,
  .vape-account-menu .dropdown-item {
    color: #fff;
  }

  .vape-account-menu .dropdown-item:hover {
    background: rgba(255, 77, 169, .14);
    color: #ff4da9;
  }

  .vape-header-icon,
  .vape-mobile-trigger span,
  .vape-mobile-trigger span::before,
  .vape-mobile-trigger span::after {
    color: #fff;
  }

  .vape-header-actions {
    gap: 25px;
  }

  .vape-header-actions .dropdown {
    align-items: center;
    display: flex;
  }

  .vape-header-icon {
    height: 24px;
    transform: none;
    width: 24px;
  }

  .vape-header-icon:hover {
    transform: none;
  }

  .vape-header-icon svg {
    display: block;
    height: 24px;
    width: 24px;
  }

  .vape-mobile-trigger span,
  .vape-mobile-trigger span::before,
  .vape-mobile-trigger span::after {
    background: #fff;
  }

  .vape-header-count {
    background: linear-gradient(89deg, #d253ff, #ff4da9 52%);
    height: 16px;
    min-width: 16px;
    padding: 0 4px;
    right: -8px;
    top: -8px;
  }

  .vape-header-mobile {
    background: #1e1e20;
    color: #fff;
    min-height: 60px;
  }

  .vape-mobile-menu {
    background: #1e1e20;
    color: #fff;
  }

  .vape-mobile-menu .offcanvas-header {
    border-bottom-color: rgba(255, 255, 255, .12);
  }

  .vape-mobile-menu .accordion-button,
  .vape-mobile-menu .nav-link,
  .vape-mobile-menu .nav-item-text,
  .vape-mobile-hot a {
    color: #fff;
  }

  .vape-mobile-hot,
  .vape-mobile-hot a {
    border-color: rgba(255, 255, 255, .16);
  }

  .vape-site-footer {
    background: #17171a;
    border-top: 0;
    color: #fff;
    margin-top: 0 !important;
  }

  .vape-footer-main {
    padding: 80px 0 70px;
  }

  .vape-footer-grid {
    display: grid;
    column-gap: 30px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: 30px;
  }

  .vape-footer-title,
  .vape-footer-title-static {
    color: #fff;
    font-family: Orbitron, Poppins, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 27px;
    margin-bottom: 25px;
  }

  .vape-footer-panel p,
  .vape-footer-panel li,
  .vape-footer-panel a,
  .vape-footer-copyright {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 24px;
  }

  .vape-footer-panel p,
  .vape-footer-panel li {
    margin-bottom: 10px;
  }

  .vape-footer-panel a:hover {
    color: #ff4da9;
  }

  .vape-footer-slot-contact,
  .vape-footer-slot-1,
  .vape-footer-slot-2,
  .vape-footer-slot-3 {
    grid-column: span 4;
  }

  .vape-footer-slot-contact {
    grid-column: 1 / span 4;
  }

  .vape-footer-slot-1 {
    grid-column: 5 / span 4;
  }

  .vape-footer-slot-2 {
    grid-column: 9 / span 4;
  }

  .vape-footer-slot-3 {
    grid-column: 1 / span 4;
  }

  .vape-footer-slot-4 {
    grid-column: 5 / span 4;
  }

  .vape-footer-slot-newsletter {
    grid-column: 5 / span 6;
  }

  .vape-footer-slot-4 + .vape-footer-slot-newsletter {
    grid-column: 9 / span 4;
  }

  .vape-footer-newsletter-column .vape-footer-panel {
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .vape-footer-newsletter-column .vape-footer-title {
    margin-bottom: 25px;
  }

  .vape-footer-subscribe {
    background: #2a272e;
    border: 0;
    border-radius: 999px;
    display: flex;
    max-width: 900px;
    min-height: 64px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .vape-footer-subscribe input {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #fff;
    flex: 1 1 auto;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    height: 64px;
    min-width: 0;
    outline: 0;
    padding: 0 30px;
    width: auto;
  }

  .vape-footer-subscribe input::placeholder {
    color: #fff;
    opacity: 1;
  }

  .vape-footer-subscribe button {
    background: linear-gradient(89deg, #d253ff, #ff4da9 52%);
    border: 0;
    border-radius: 999px;
    color: #fff;
    flex: 0 0 auto;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 52px;
    min-width: 0;
    margin: 6px;
    padding: 0 32px;
    position: static;
    transform: none;
  }

  .vape-footer-subscribe button:disabled {
    cursor: not-allowed;
    opacity: .72;
  }

  .vape-footer-newsletter-message {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .vape-footer-newsletter-message.is-error {
    color: #ff9aba;
  }

  .vape-footer-payment-inline {
    margin-top: 22px;
  }

  .vape-footer-payment-inline img {
    height: auto;
    max-width: 170px;
    width: 100%;
  }

  .vape-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    padding: 16px 0 20px;
    text-align: center;
  }

  .vape-footer-bottom .vape-footer-logo {
    display: inline-flex;
    margin: 0 auto;
    max-width: 120px;
  }

  .vape-footer-copyright {
    margin-top: 14px;
  }

  .vape-footer-social {
    gap: 12px;
    justify-content: center;
    margin-top: 14px;
  }

  .vape-footer-social a {
    color: #fff;
  }

  .vape-footer-social a:hover {
    color: #ff4da9;
  }

  @media (max-width: 1599px) {
    .vape-footer-grid {
      row-gap: 50px;
    }
  }

  @media (max-width: 1199px) {
    .vape-footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vape-footer-slot-contact,
    .vape-footer-slot-1,
    .vape-footer-slot-2,
    .vape-footer-slot-3,
    .vape-footer-slot-4,
    .vape-footer-newsletter-column {
      grid-column: auto;
    }
  }

  @media (max-width: 767px) {
    .vape-site-footer .container-fluid {
      padding-left: 15px;
      padding-right: 15px;
    }
    .vape-footer-main {
      padding: 34px 0 18px;
    }
    .vape-footer-grid {
      grid-template-columns: 1fr;
    }

    .vape-footer-newsletter-column {
      grid-column: auto;
    }

    .vape-footer-newsletter-column .vape-footer-panel {
      padding: 0;
    }

    .vape-footer-newsletter-column .vape-footer-title {
      font-size: 22.88px;
      line-height: 34.32px;
      margin-bottom: 12px;
    }

    .vape-footer-subscribe input {
      height: 64px;
      padding: 0 16px 0 22px;
    }

    .vape-footer-subscribe button {
      height: 54px;
      margin: 5px;
      padding: 0 22px;
    }

    .vape-footer-subscribe {
      min-height: 64px;
    }
    .vape-footer-title,
    .vape-footer-title-static {
      font-size: 22.88px;
      line-height: 34.32px;
    }
    .vape-footer-panel p,
    .vape-footer-panel li,
    .vape-footer-panel a,
    .vape-footer-copyright {
      font-size: 16px;
      line-height: 24px;
    }
    .vape-footer-panel p,
    .vape-footer-panel li {
      margin-bottom: 8px;
    }
    .vape-footer-payment-inline {
      margin-top: 16px;
    }
    .vape-footer-bottom {
      padding: 16px 0 20px;
    }
  }

  body.page-home,
  body.template-index {
    --vape-header-glow: linear-gradient(90deg, rgba(162, 199, 84, 1), rgba(199, 84, 84, 1) 30%, rgba(148, 84, 199, 1) 70%, rgba(84, 178, 199, 1) 100%);
  }

  body.page-home::before,
  body.template-index::before {
    border-radius: 0;
    filter: blur(68px);
    height: 260px;
    left: 50%;
    opacity: .18;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
  }

  body.page-home .vape-site-header,
  body.template-index .vape-site-header {
    background: transparent;
    box-shadow: none;
    position: sticky;
  }

  body.page-home .vape-site-header.is-scrolled,
  body.template-index .vape-site-header.is-scrolled {
    background: #17171a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  }

  .vape-header-desktop {
    isolation: isolate;
  }

  .vape-header-desktop::before {
    animation: none;
    aspect-ratio: auto;
    background: transparent;
    border-radius: 0;
    content: "";
    filter: none;
    height: 100%;
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: none;
    width: auto;
    z-index: -2;
  }

  .vape-header-desktop::after {
    animation: VapeBgGradient 20s linear infinite;
    background: var(--vape-header-glow);
    background-size: 400% 400%;
    content: "";
    filter: blur(72px);
    height: 230px;
    left: 7%;
    opacity: .42;
    pointer-events: none;
    position: absolute;
    right: 7%;
    top: -96px;
    z-index: -1;
  }

  .vape-site-header.is-scrolled .vape-header-desktop::before {
    opacity: 1;
    background: #17171a;
  }

  .vape-site-header.is-scrolled .vape-header-desktop::after {
    opacity: 0;
  }

  .vape-header-row,
  .vape-main-menu > li {
    min-height: 127px;
    transition: min-height .22s ease;
  }

  .vape-header-logo {
    height: 54px;
    width: 142px;
    transition: height .22s ease, width .22s ease;
  }

  .vape-main-menu-link {
    font-size: 16px;
    font-weight: 500;
  }

  .vape-main-menu > li:first-child .vape-main-menu-link {
    font-weight: 700;
  }

  .vape-header-actions {
    gap: 22px;
  }

  .vape-header-icon {
    color: #fff;
    height: 34px;
    width: 34px;
  }

  .vape-site-header.is-scrolled .vape-header-row,
  .vape-site-header.is-scrolled .vape-main-menu > li {
    min-height: 74px;
  }

  .vape-site-header.is-scrolled .vape-header-logo {
    height: 42px;
    width: 112px;
  }

  .vape-site-header.is-scrolled .vape-main-menu-link {
    font-size: 15px;
  }

  .vape-site-header.is-scrolled .vape-header-icon {
    height: 30px;
    width: 30px;
  }

  .vape-site-header.is-scrolled .vape-mega-menu {
    top: 100%;
  }

  .vape-header-count {
    background: linear-gradient(180deg, #d253ff, #ff4da9);
    height: 17px;
    min-width: 17px;
    top: -3px;
  }

  @media (max-width: 1199px) {
    .vape-header-row {
      min-height: 96px;
    }

    .vape-site-header.is-scrolled .vape-header-row {
      min-height: 70px;
    }
  }

  @media (max-width: 767px) {
    .vape-header-mobile {
      background: #17171a;
      color: #fff;
    }

    .vape-header-mobile .vape-mobile-trigger span,
    .vape-header-mobile .vape-mobile-trigger span::before,
    .vape-header-mobile .vape-mobile-trigger span::after {
      background: #fff;
    }
  }

  .vape-site-footer .container-fluid {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .vape-site-footer .vape-footer-main {
    padding: 52px 0 18px;
  }

  .vape-site-footer .vape-footer-grid {
    column-gap: 30px;
    row-gap: 34px;
  }

  .vape-site-footer .vape-footer-title,
  .vape-site-footer .vape-footer-title-static {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 25px;
  }

  .vape-site-footer .vape-footer-panel p,
  .vape-site-footer .vape-footer-panel li,
  .vape-site-footer .vape-footer-panel a {
    font-size: 16px;
    line-height: 24px;
  }

  .vape-site-footer .vape-footer-panel p,
  .vape-site-footer .vape-footer-panel li {
    margin-bottom: 14px;
  }

  .vape-site-footer .vape-footer-subscribe {
    min-height: 64px;
  }

  .vape-site-footer .vape-footer-subscribe input {
    height: 64px;
  }

  .vape-site-footer .vape-footer-subscribe button {
    height: 52px;
    margin: 6px;
    padding: 0 32px;
  }

  .vape-site-footer .vape-footer-payment-inline {
    margin-top: 24px;
  }

  .vape-site-footer .vape-footer-bottom {
    padding: 14px 0 18px;
  }

  .vape-site-footer .vape-footer-bottom .vape-footer-logo {
    max-width: 105px;
  }

  .vape-site-footer .vape-footer-copyright,
  .vape-site-footer .vape-footer-social {
    margin-top: 12px;
  }

  @media (max-width: 767px) {
    .vape-site-footer .container-fluid {
      padding-left: 15px;
      padding-right: 15px;
    }

    .vape-site-footer .vape-footer-main {
      padding: 30px 0 10px;
    }

    .vape-site-footer .vape-footer-grid {
      row-gap: 22px;
    }

    .vape-site-footer .vape-footer-title,
    .vape-site-footer .vape-footer-title-static {
      font-size: 18px;
      line-height: 27px;
      margin-bottom: 10px;
    }

    .vape-site-footer .vape-footer-panel p,
    .vape-site-footer .vape-footer-panel li,
    .vape-site-footer .vape-footer-panel a {
      font-size: 16px;
      line-height: 24px;
    }

    .vape-site-footer .vape-footer-panel p,
    .vape-site-footer .vape-footer-panel li {
      margin-bottom: 6px;
    }

    .vape-site-footer .vape-footer-subscribe {
      min-height: 64px;
    }

    .vape-site-footer .vape-footer-subscribe input {
      height: 64px;
      padding-left: 22px;
    }

    .vape-site-footer .vape-footer-subscribe button {
      height: 54px;
      margin: 5px;
      padding: 0 22px;
    }

    .vape-site-footer .vape-footer-payment-inline {
      margin-top: 14px;
    }

    .vape-site-footer .vape-footer-bottom {
      padding: 12px 0 14px;
    }
  }

  .vape-mobile-bottom-nav {
    display: none;
  }

  @media (max-width: 767px) {
    body {
      padding-bottom: 66px;
    }

    .vape-mobile-bottom-nav {
      align-items: center;
      background: #fff;
      border-top: 1px solid rgba(0, 0, 0, .08);
      bottom: 0;
      box-shadow: 0 -8px 24px rgba(0, 0, 0, .14);
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      height: 66px;
      left: 0;
      position: fixed;
      right: 0;
      z-index: 1038;
    }

    .vape-mobile-bottom-nav a,
    .vape-mobile-bottom-nav button {
      align-items: center;
      background: transparent;
      border: 0;
      color: #1e1e20;
      display: flex;
      flex-direction: column;
      font-family: Poppins, Arial, sans-serif;
      font-size: 11px;
      font-weight: 500;
      gap: 4px;
      justify-content: center;
      line-height: 1.1;
      min-width: 0;
      padding: 7px 2px 6px;
      text-decoration: none;
    }

    .vape-mobile-bottom-nav i {
      font-size: 22px;
      line-height: 1;
    }

    .vape-mobile-bottom-nav a:nth-child(3) i {
      color: #ff4da9;
    }

    .vape-mobile-bottom-nav span {
      display: block;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .vape-mobile-menu {
      --bs-offcanvas-bg: #fff;
      --bs-offcanvas-color: #1e1e20;
      --bs-offcanvas-width: min(100vw, 520px);
      background: #fff;
      border-right: 0;
      color: #1e1e20;
    }

    .vape-mobile-menu .offcanvas-header {
      background: #fff;
      border-bottom: 1px solid rgba(30, 30, 32, .08);
      min-height: 60px;
      padding: 0 22px;
    }

    .vape-mobile-menu .offcanvas-title {
      color: #1e1e20;
      font-family: var(--vape-font-body, Poppins, Arial, sans-serif);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .vape-mobile-menu .btn-close {
      filter: none;
      opacity: 1;
    }

    .vape-mobile-menu .offcanvas-body {
      background: #fff;
      overflow-y: auto;
      padding: 0;
      -webkit-overflow-scrolling: touch;
    }

    .vape-mobile-menu .accordion,
    .vape-mobile-menu .accordion-item,
    .vape-mobile-menu .accordion-collapse,
    .vape-mobile-menu .children-group {
      background: #fff;
      border: 0;
      color: #1e1e20;
    }

    .vape-mobile-menu .nav-item-text {
      align-items: center;
      border-bottom: 1px solid rgba(30, 30, 32, .08);
      display: flex;
      justify-content: space-between;
      min-height: 64px;
      padding: 0 22px;
    }

    .vape-mobile-menu .nav-link {
      color: #1e1e20 !important;
      flex: 1 1 auto;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.35;
      min-width: 0;
      padding: 18px 0;
    }

    .vape-mobile-menu .nav-item-text > span {
      align-items: center;
      border-left: 0;
      color: #1e1e20;
      display: inline-flex;
      flex: 0 0 30px;
      height: 40px;
      justify-content: flex-end;
      pointer-events: auto;
    }

    .vape-mobile-menu .nav-item-text > span i {
      font-size: 16px;
      transform: rotate(-90deg);
      transition: transform .2s ease;
    }

    .vape-mobile-menu .nav-item-text > span:not(.collapsed) i {
      transform: rotate(0deg);
    }

    .vape-mobile-menu .children-title {
      background: #f7f7f7;
      border-bottom: 1px solid rgba(30, 30, 32, .06);
      color: #1e1e20;
      font-size: 14px;
      font-weight: 700;
      min-height: 48px;
      padding: 13px 34px;
    }

    .vape-mobile-menu .children-title span {
      color: #1e1e20;
    }

    .vape-mobile-menu .ul-children {
      background: #f7f7f7;
      gap: 0;
      padding: 8px 34px 16px;
    }

    .vape-mobile-menu .ul-children .nav-link {
      color: rgba(30, 30, 32, .7) !important;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 0 !important;
    }

    .vape-mobile-menu .badge {
      border-radius: 999px;
      font-size: 10px;
      font-weight: 600;
      margin-left: 8px;
      padding: 3px 7px;
      vertical-align: middle;
    }

    .vape-mobile-hot {
      background: #fff;
      border-top: 1px solid rgba(30, 30, 32, .08);
      margin: 14px 22px 0;
      padding: 18px 0 24px;
      pointer-events: auto;
      position: relative;
      z-index: 3;
    }

    .vape-mobile-hot strong {
      color: #1e1e20;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .vape-mobile-hot > div {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
      pointer-events: auto;
      position: relative;
      z-index: 3;
    }

    .vape-mobile-hot a {
      align-items: center;
      border-color: rgba(30, 30, 32, .16);
      color: #1e1e20 !important;
      display: inline-flex;
      font-size: 13px;
      font-weight: 500;
      margin: 0;
      min-height: 38px;
      padding: 7px 14px;
      pointer-events: auto;
      position: relative;
      text-decoration: none;
      touch-action: manipulation;
      z-index: 4;
    }

    .vape-site-footer .vape-footer-main {
      padding: 56px 0 34px;
    }

    .vape-site-footer .vape-footer-grid {
      grid-template-columns: 1fr;
      row-gap: 0;
    }

    .vape-site-footer .vape-footer-slot-contact,
    .vape-site-footer .vape-footer-slot-1,
    .vape-site-footer .vape-footer-slot-2,
    .vape-site-footer .vape-footer-slot-3,
    .vape-site-footer .vape-footer-slot-4,
    .vape-site-footer .vape-footer-slot-newsletter,
    .vape-site-footer .vape-footer-slot-4 + .vape-footer-slot-newsletter {
      grid-column: 1 / -1;
      width: 100%;
    }

    .vape-site-footer .vape-footer-column {
      border-top: 0;
      padding: 0;
    }

    .vape-site-footer .vape-footer-newsletter-column {
      border-top: 0;
      order: 0;
      padding: 0;
    }

    .vape-site-footer .vape-footer-title {
      align-items: center;
      display: flex;
      font-size: 16px;
      justify-content: space-between;
      line-height: 22px;
      margin: 0;
      min-height: 70px;
      padding: 12px 0;
    }

    .vape-site-footer .vape-footer-title span {
      display: block;
      flex: 0 0 22px;
      height: 22px;
      margin-left: 18px;
      position: relative;
      width: 22px;
    }

    .vape-site-footer .vape-footer-title span::before,
    .vape-site-footer .vape-footer-title span::after {
      background: #fff;
      content: "";
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      transition: opacity .2s ease, transform .2s ease;
    }

    .vape-site-footer .vape-footer-title span::before {
      height: 2px;
      width: 18px;
    }

    .vape-site-footer .vape-footer-title span::after {
      height: 18px;
      width: 2px;
    }

    .vape-site-footer .vape-footer-column.is-open .vape-footer-title span::after {
      opacity: 0;
      transform: translate(-50%, -50%) scaleY(0);
    }

    .vape-site-footer .vape-footer-panel {
      display: none;
      padding: 2px 0 24px;
    }

    .vape-site-footer .vape-footer-panel p,
    .vape-site-footer .vape-footer-panel li {
      line-height: 26px;
      margin-bottom: 12px;
    }

    .vape-site-footer .vape-footer-panel p:last-child,
    .vape-site-footer .vape-footer-panel li:last-child {
      margin-bottom: 0;
    }

    .vape-site-footer .vape-footer-column.is-open .vape-footer-panel {
      animation: vapeFooterPanelIn .24s ease both;
      display: block;
    }

    .vape-site-footer .vape-footer-subscribe {
      border-radius: 999px;
      display: flex;
      min-height: 64px;
      overflow: hidden;
    }

    .vape-site-footer .vape-footer-subscribe input {
      border-radius: 999px;
      font-size: 14px;
      height: 64px;
      padding: 0 22px;
    }

    .vape-site-footer .vape-footer-subscribe button {
      border-radius: 999px;
      flex: 0 0 auto;
      font-size: 14px;
      height: 54px;
      margin: 5px;
      min-width: 110px;
      padding: 0 20px;
    }

    .vape-site-footer .vape-footer-bottom {
      padding: 24px 0 26px;
    }
  }

  @keyframes vapeFooterPanelIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body.vape-one-theme .vape-product-card {
    height: 100%;
    min-width: 0;
    position: relative;
    text-align: left;
  }

  body.vape-one-theme .vape-product-card .inner-top {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
  }

  body.vape-one-theme .vape-product-media {
    background: #f7f7f7;
    border-radius: 10px;
    display: block;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
  }

  body.vape-one-theme .vape-product-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    z-index: 1;
  }

  body.vape-one-theme .vape-product-media .respone_image {
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  body.vape-one-theme .vape-product-media .respone_image img {
    display: block;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
  }

  body.vape-one-theme .vape-product-card:hover .vape-product-media .respone_image img {
    transform: scale(1.02);
  }

  body.vape-one-theme .product--badge {
    left: 14px;
    position: absolute;
    top: 14px;
    z-index: 3;
  }

  body.vape-one-theme .vape-product-badge {
    align-items: center;
    background: #111;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    min-height: 26px;
    padding: 0 11px;
  }

  body.vape-one-theme .vape-product-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 14px;
    transform: translateX(12px);
    transition: opacity .22s ease, transform .22s ease;
    z-index: 4;
  }

  body.vape-one-theme .vape-product-card:hover .vape-product-actions,
  body.vape-one-theme .vape-product-card:focus-within .vape-product-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  body.vape-one-theme .vape-product-actions .productWishList,
  body.vape-one-theme .vape-product-actions .productQuickView {
    display: block;
    margin: 0;
  }

  body.vape-one-theme .vape-product-actions button {
    align-items: center;
    background: #fff;
    border: 0 !important;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    color: #1f1f1f;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    height: 42px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    width: 42px;
  }

  body.vape-one-theme .vape-product-actions button:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
  }

  body.vape-one-theme .vape-product-actions button i {
    display: block;
    line-height: 1;
  }

  body.vape-one-theme .product__info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
  }

  body.vape-one-theme .product__title {
    margin: 0;
  }

  body.vape-one-theme .product__title a {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #fff;
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.45;
    min-height: 0;
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    word-break: break-word;
  }

  body.vape-one-theme .product__title a:hover {
    color: #fd560f;
  }

  body.vape-one-theme .vape-product-price {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 6px 8px;
    line-height: 1.35;
    margin-top: 10px;
  }

  body.vape-one-theme .vape-product-price span {
    color: #2a2a2a;
    font-weight: 600;
  }

  body.vape-one-theme .vape-product-price del {
    color: #6f6f6f;
    font-weight: 400;
  }

  @media (hover: none) {
    body.vape-one-theme .vape-product-actions {
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }
  }

  @media (max-width: 575.98px) {
    body.vape-one-theme .vape-product-media {
      margin-bottom: 12px;
    }

    body.vape-one-theme .product--badge {
      left: 10px;
      top: 10px;
    }

    body.vape-one-theme .vape-product-badge {
      font-size: 11px;
      min-height: 23px;
      padding: 0 9px;
    }

    body.vape-one-theme .vape-product-actions {
      gap: 7px;
      right: 10px;
      top: 10px;
    }

    body.vape-one-theme .vape-product-actions button {
      font-size: 16px;
      height: 36px;
      width: 36px;
    }

    body.vape-one-theme .product__title a {
      font-size: 14px;
      line-height: 1.4;
      min-height: 0;
    }

    body.vape-one-theme .vape-product-price {
      font-size: 14px;
    }
  }

  body.vape-one-theme #offcanvas-search-top.offcanvas-top {
    height: var(--vape-search-panel-height, 176px) !important;
    max-height: min(72vh, 520px);
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 28px;
  }

  body.vape-one-theme #offcanvas-search-top.offcanvas-top .container {
    padding-bottom: 0;
  }

  body.vape-one-theme #offcanvas-search-top.offcanvas-top .hot-search-wrap {
    margin-bottom: 0 !important;
  }

  body.vape-one-theme #offcanvas-search-top.offcanvas-top .search-pop-products-wrap.loading {
    min-height: 120px;
  }

  body.vape-one-theme {
    --vape-btn-start: #d253ff;
    --vape-btn-end: #ff4da9;
    --vape-btn-gradient: linear-gradient(90deg, var(--vape-btn-start), var(--vape-btn-end));
    --vape-btn-shadow: 0 14px 30px rgba(210, 83, 255, .22);
  }

  body.vape-one-theme .btn:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square),
  body.vape-one-theme .vape-btn,
  body.vape-one-theme .vape-auth-submit,
  body.vape-one-theme .search-pop-products-show-all .btn,
  body.vape-one-theme .vape-footer-subscribe button {
    align-items: center;
    background: var(--vape-btn-gradient) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: var(--vape-btn-shadow);
    color: #fff !important;
    display: inline-flex;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0;
    min-height: 44px;
    padding: 0 26px;
    text-decoration: none !important;
    transition: box-shadow .22s ease, filter .22s ease, transform .22s ease;
    white-space: nowrap;
  }

  body.vape-one-theme .btn:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square):hover,
  body.vape-one-theme .vape-btn:hover,
  body.vape-one-theme .vape-auth-submit:hover,
  body.vape-one-theme .search-pop-products-show-all .btn:hover,
  body.vape-one-theme .vape-footer-subscribe button:hover {
    box-shadow: 0 18px 38px rgba(255, 77, 169, .28);
    color: #fff !important;
    filter: brightness(1.04);
    transform: translateY(-1px);
  }

  body.vape-one-theme .btn:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square):focus-visible,
  body.vape-one-theme .vape-btn:focus-visible,
  body.vape-one-theme .vape-auth-submit:focus-visible,
  body.vape-one-theme .vape-footer-subscribe button:focus-visible {
    box-shadow: 0 0 0 4px rgba(210, 83, 255, .22), var(--vape-btn-shadow);
    outline: 0;
  }

  body.vape-one-theme .btn-outline-dark:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square),
  body.vape-one-theme .btn-outline-secondary:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square),
  body.vape-one-theme .btn-light:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square),
  body.vape-one-theme .hot-search-list .btn {
    background: #fff !important;
    border: 1px solid rgba(210, 83, 255, .34) !important;
    box-shadow: none;
    color: #2a2430 !important;
  }

  body.vape-one-theme .btn-outline-dark:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square):hover,
  body.vape-one-theme .btn-outline-secondary:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square):hover,
  body.vape-one-theme .btn-light:not(.btn-close):not(.btn-link):not(.quantity-reduce):not(.quantity-increase):not(.lf-wishlist-square):hover,
  body.vape-one-theme .hot-search-list .btn:hover {
    background: var(--vape-btn-gradient) !important;
    border-color: transparent !important;
    box-shadow: var(--vape-btn-shadow);
    color: #fff !important;
  }

  body.vape-one-theme .btn-link.text-danger {
    color: #ff4da9 !important;
    font-weight: 700;
    text-decoration: none;
  }

  body.vape-one-theme .btn-link.text-danger:hover {
    color: #d253ff !important;
  }

  body.vape-one-theme .page-product .btn-buy-now.btn {
    background: var(--vape-btn-gradient) !important;
    color: #fff !important;
  }

  body.vape-one-theme .page-product .add-cart.btn {
    background: #fff !important;
    border: 1px solid rgba(210, 83, 255, .42) !important;
    color: #2a2430 !important;
  }

  body.vape-one-theme .page-product .add-cart.btn:hover {
    background: var(--vape-btn-gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
  }

  body.vape-one-theme .page-product .lf-wishlist-square.btn {
    background: #fff;
    border-color: rgba(210, 83, 255, .42);
    color: #d253ff;
  }

  body.vape-one-theme .page-product .lf-wishlist-square.btn:hover,
  body.vape-one-theme .page-product .lf-wishlist-square.btn[data-in-wishlist]:not([data-in-wishlist="0"]) {
    background: var(--vape-btn-gradient);
    border-color: transparent;
    color: #fff;
  }

  body.vape-one-theme .vape-product-actions button:hover {
    background: var(--vape-btn-gradient);
    color: #fff;
  }
 
      .vape-section { --vape-accent: #ff8a00; --vape-accent-2: #ff6b6b; --vape-dark: #171717; --vape-muted: #8e8e8e; color: #1c1c1c; font-size: 14px; line-height: 21px; overflow: hidden; position: relative; }
      .vape-section a { color: inherit; text-decoration: none; }
      .vape-section img { display: block; max-width: 100%; }
      .vape-inner { position: relative; }
      .vape-reveal-ready .vape-animate { opacity: 0; transform: translateY(34px); transition: opacity .65s ease, transform .65s ease; transition-delay: calc(min(var(--vape-order, 0), 8) * 70ms); }
      .vape-reveal-ready .vape-animate.is-visible { opacity: 1; transform: translateY(0); }
      .vape-heading { margin-bottom: 34px; text-align: center; }
      .vape-heading h2 { color: #1c1c1c; font-size: 3rem; font-weight: 700; line-height: 1.2; margin: 0; }
      .vape-heading p { color: var(--vape-muted); font-size: 1rem; line-height: 1.7; margin: 14px 0 0; }
      .vape-btn { align-items: center; background: linear-gradient(90deg, #d253ff, #ff4da9); border: 0; border-radius: 999px; color: #fff; display: inline-flex; font-size: 14px; font-weight: 700; gap: 10px; min-height: 46px; padding: 0 26px; text-transform: none; white-space: nowrap; }
      .vape-btn:hover { color: #fff; filter: brightness(1.04); }
      .vape-btn-outline { background: #fff; border: 1px solid rgba(210, 83, 255, .42); color: #2a2430; }
      .vape-btn-outline:hover { background: linear-gradient(90deg, #d253ff, #ff4da9); color: #fff; }
      .vape-nav { --slider-arrow-color: #1c1c1c; --slider-arrow-bg: #fff; --slider-arrow-border: #fff; --slider-arrow-color-act: #fff; --slider-arrow-bg-act: #ff4da9; --slider-arrow-border-act: #ff4da9; align-items: center; background: var(--slider-arrow-bg); border: 1px solid var(--slider-arrow-border); border-radius: 100%; box-shadow: none; color: var(--slider-arrow-color); display: flex; height: 50px; justify-content: center; opacity: 0; position: absolute; top: 50%; transform: translateY(-50%); transition: background .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease; width: 50px; z-index: 3; }
      .vape-nav i { display: inline-flex; line-height: 1; }
      .vape-row-slider:hover .vape-nav, .vape-row-slider:focus-within .vape-nav { opacity: 1; }
      .vape-nav:hover { background: var(--slider-arrow-bg-act); border-color: var(--slider-arrow-border-act); color: var(--slider-arrow-color-act); }
      .vape-nav.is-disabled { cursor: default; opacity: .6; pointer-events: none; }
      .vape-nav-prev { left: -25px; }
      .vape-nav-next { right: -25px; }
      .vape-row-slider { position: relative; }
      .vape-row-track { cursor: grab; display: flex; gap: 30px; overflow-x: auto; overscroll-behavior-x: contain; padding: 2px 1px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-y; }
      .vape-row-track.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
      .vape-row-track::-webkit-scrollbar { display: none; }
      .vape-row-track > * { flex: 0 0 calc((100% - (var(--vape-pc-count, 4) - 1) * 30px) / var(--vape-pc-count, 4)); min-width: 0; scroll-snap-align: start; }

      .vape-hero { background: #000; padding: 0; }
      .vape-hero-stage { background: #000; overflow: hidden; position: relative; touch-action: pan-y; }
      .vape-hero-slide { inset: 0; opacity: 0; pointer-events: none; position: absolute; transition: opacity .75s ease, visibility .75s ease; visibility: hidden; width: 100%; }
      .vape-hero-slide.is-active { opacity: 1; pointer-events: auto; position: relative; visibility: visible; z-index: 1; }
      .vape-hero-slide:not(.is-active) .vape-hero-caption,
      .vape-hero-slide:not(.is-active) .vape-hero-product {
        opacity: 0;
        transition: none;
        visibility: hidden;
      }
      .vape-hero-media { aspect-ratio: 2400 / 1075; overflow: hidden; width: 100%; }
      .vape-hero-media img { height: 100%; object-fit: cover; transform: scale(1.012); transition: transform 6.8s ease; width: 100%; }
      .vape-hero-slide.is-active .vape-hero-media img { transform: scale(1); }
      .vape-hero-slide.is-active .vape-hero-media:hover img { transform: scale(1.045); transition-duration: 1.4s; }
      .vape-hero-caption { color: #fff; max-width: 50%; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
      .vape-hero-caption.pos-left { left: 6%; text-align: left; }
      .vape-hero-caption.pos-center { left: 50%; text-align: center; transform: translate(-50%, -50%); }
      .vape-hero-caption.pos-right { right: 6%; text-align: right; }
      .vape-hero-caption :is(h1, h2) { color: #fff; font-size: 2.5rem; font-weight: 700; line-height: 1.18; margin: 0 0 15px; }
      .vape-hero-caption p { color: #e8e8e8; font-size: 1.125rem; line-height: 1.5; margin: 0 0 25px; }
      .vape-hero-slide.is-active .vape-hero-caption :is(h1, h2), .vape-hero-slide.is-active .vape-hero-caption p, .vape-hero-slide.is-active .vape-hero-caption .vape-btn { animation: vapeHeroRise .72s ease both; }
      .vape-hero-slide.is-active .vape-hero-caption p { animation-delay: .12s; }
      .vape-hero-slide.is-active .vape-hero-caption .vape-btn { animation-delay: .22s; }
      .vape-hero-controls { align-items: center; bottom: 30px; display: flex; gap: 22px; justify-content: center; left: 0; position: absolute; right: 0; z-index: 3; }
      .vape-hero-dots { align-items: center; display: flex; gap: 18px; justify-content: center; }
      .vape-hero-dots button { background: #fff; border: 0; border-radius: 999px; color: transparent; font-size: 0; height: 9px; line-height: 0; overflow: hidden; padding: 0; text-indent: -9999px; transition: background .25s ease, transform .25s ease; width: 9px; }
      .vape-hero-dots button.is-active { background: #ff4da9; }
      .vape-hero-arrow { align-items: center; background: transparent; border: 0; color: #fff; display: flex; height: 36px; justify-content: center; padding: 0; position: relative; transition: color .25s ease, transform .25s ease; width: 36px; z-index: 4; }
      .vape-hero-arrow i { display: none; }
      .vape-hero-arrow::before { border-color: currentColor; border-style: solid; border-width: 0 0 2px 2px; content: ""; height: 16px; width: 16px; }
      .vape-hero-arrow-prev::before { transform: rotate(45deg); }
      .vape-hero-arrow-next::before { transform: rotate(-135deg); }
      .vape-hero-arrow:hover { color: #ff4da9; transform: translateY(-1px); }
      .vape-gallery { padding: 0 0 30px; }
      .vape-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
      .vape-gallery-card { aspect-ratio: 720 / 570; overflow: hidden; position: relative; }
      .vape-gallery-card img { height: 100%; object-fit: cover; transition: transform .45s ease; width: 100%; }
      .vape-gallery-card:hover img { transform: scale(1.018); }
      .vape-gallery-caption { bottom: 36px; left: 38px; position: absolute; transition: transform .3s ease; z-index: 2; }
      .vape-gallery-card:hover .vape-gallery-caption { transform: translateY(-5px); }
      .vape-gallery-caption h3 { color: #1c1c1c; font-size: 1.875rem; font-weight: 500; line-height: 1.15; margin: 0 0 18px; }
      .vape-link { color: #1c1c1c; display: inline-flex; font-size: .95rem; font-weight: 600; gap: 8px; align-items: center; }
      .vape-link::after { content: "->"; font-weight: 700; }

      .vape-policy { padding: 30px 0; }
      .vape-policy-grid { display: grid; gap: 30px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .vape-policy-card { align-items: center; background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; display: flex; gap: 18px; min-height: 126px; padding: 26px; }
      .vape-policy-card img { flex: 0 0 58px; height: 58px; object-fit: contain; width: 58px; }
      .vape-policy-card h3 { font-size: 1.125rem; font-weight: 600; margin: 0; }
      .vape-policy-card p { color: #8e8e8e; font-size: .95rem; line-height: 1.55; margin: 12px 0 0; }

      .vape-image-group { padding: 30px 0; }
      .vape-image-grid { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
      .vape-image-grid-right { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
      .vape-image-grid-right .wide { grid-column: 1 / -1; }
      .vape-promo-card { border-radius: 10px; display: block; min-height: 100%; overflow: hidden; position: relative; }
      .vape-promo-card img { height: 100%; object-fit: cover; transition: transform .55s ease; width: 100%; }
      .vape-promo-card:hover img { transform: scale(1.012); }
      .vape-promo-card.large { aspect-ratio: 1305 / 1170; }
      .vape-promo-card.wide { aspect-ratio: 1305 / 555; }
      .vape-promo-card.small { aspect-ratio: 630 / 480; }
      .vape-promo-copy { left: 42px; max-width: 48%; position: absolute; top: 42px; }
      .vape-promo-card.wide .vape-promo-copy { top: 50%; transform: translateY(-50%); }
      .vape-promo-card.small .vape-promo-copy { bottom: 28px; top: auto; }
      .vape-promo-copy h3 { color: #fff; font-size: 2rem; font-weight: 700; line-height: 1.2; margin: 0 0 12px; }
      .vape-promo-copy p { color: rgba(255,255,255,.82); font-size: .98rem; line-height: 1.5; margin: 0 0 20px; }
      .vape-promo-copy .vape-btn { min-height: 40px; padding: 0 20px; }
      .vape-promo-card.small .vape-promo-copy h3 { font-size: 1.55rem; }

      .vape-products { padding: 30px 0 70px; }
      .vape-product-card { min-width: 0; text-align: center; }
      .vape-product-media { align-items: center; background: #f7f7f7; border-radius: 10px; display: flex; justify-content: center; margin-bottom: 18px; overflow: hidden; padding: 22px; position: relative; transition: box-shadow .28s ease, transform .28s ease; }
      .vape-product-media::before { content: ""; display: block; padding-top: 100%; }
      .vape-product-media::after { background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.75), transparent 52%); content: ""; inset: 0; opacity: 0; pointer-events: none; position: absolute; transition: opacity .28s ease; }
      .vape-product-card:hover .vape-product-media { box-shadow: 0 14px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
      .vape-product-card:hover .vape-product-media::after { opacity: 1; }
      .vape-product-image-link { inset: 0; position: absolute; z-index: 1; }
      .vape-product-media img { height: 82%; left: 9%; object-fit: contain; position: absolute; top: 9%; transition: opacity .28s ease, transform .4s ease; width: 82%; }
      .vape-product-img-hover { opacity: 0; }
      .vape-product-card:hover .vape-product-img { transform: scale(1.015); }
      .vape-product-card:hover .vape-product-img-hover { opacity: 1; }
      .vape-product-badge { background: linear-gradient(180deg, var(--vape-accent), var(--vape-accent-2)); border-radius: 999px; color: #fff; font-size: .75rem; font-weight: 700; left: 14px; min-height: 24px; padding: 4px 10px; position: absolute; top: 14px; z-index: 2; }
      .vape-product-actions { display: block; opacity: 0; pointer-events: none; position: absolute; right: 15px; top: 18px; transform: translateX(18px); transition: opacity .28s ease, transform .28s ease; z-index: 3; }
      .vape-product-actions button { align-items: center; background: #fff; border: 0 !important; border-radius: 10px; box-shadow: none; color: #1e1e20; display: flex; height: 40px; justify-content: center; margin: 0 0 10px; padding: 0; position: relative; transition: background .25s ease, color .25s ease, opacity .25s ease, transform .25s ease; width: 40px; }
      .vape-product-actions button:hover { background: linear-gradient(90deg, #d253ff, #ff4da9 100%); color: #fff; transform: none; }
      .vape-product-actions svg { display: block; }
      .vape-action-tip { align-items: center; background: linear-gradient(90deg, #d253ff, #ff4da9 100%); border: 0 !important; border-radius: 4px; color: #fff; display: flex; font-size: 12px; height: 30px; line-height: 30px; opacity: 0; padding: 0 15px; pointer-events: none; position: absolute; right: calc(100% + 18px); top: 50%; transform: translateY(-50%) translateX(12px); transition: opacity .25s ease, transform .25s ease; white-space: nowrap; }
      .vape-action-tip::after { border: 5px solid transparent; border-left-color: #ff4da9; content: ""; left: 100%; position: absolute; top: 50%; transform: translateY(-50%); }
      .vape-product-actions button:hover .vape-action-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
      .vape-product-card:hover .vape-product-actions, .vape-product-card:focus-within .vape-product-actions { opacity: 1; pointer-events: auto; transform: translateX(0); }
      .vape-product-rating { color: #ffb900; font-size: .8rem; margin-bottom: 9px; }
      .vape-product-card h3 { font-size: 1rem; font-weight: 500; line-height: 1.35; margin: 0 0 9px; }
      .vape-product-card h3 a:hover { color: #ff8a00; }
      .vape-product-price { align-items: center; display: flex; gap: 9px; justify-content: center; }
      .vape-product-price span { color: #1c1c1c; font-weight: 700; }
      .vape-product-price del { color: #9b9b9b; font-size: .9rem; }

      .vape-video { background: #f7f7f7; padding: 70px 0; }
      .vape-video-grid { align-items: center; display: grid; gap: 42px; grid-template-columns: 1fr 1fr; }
      .vape-button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
      .vape-video-media { border-radius: 10px; overflow: hidden; position: relative; }
      .vape-video-media img { aspect-ratio: 16 / 9; height: 100%; object-fit: cover; width: 100%; }
      .vape-play { align-items: center; background: #fff; border: 0; border-radius: 50%; color: #d253ff; display: flex; font-size: 26px; height: 74px; justify-content: center; left: 50%; padding-left: 5px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 74px; }
      .vape-play:hover { background: linear-gradient(90deg, #d253ff, #ff4da9); color: #fff; }

      .vape-tabs-section { padding: 70px 0; }
      .vape-tab-head { align-items: center; display: flex; gap: 22px; justify-content: center; margin: -12px 0 32px; }
      .vape-tab-head button { background: transparent; border: 0; color: #8e8e8e; font-weight: 600; padding: 8px 10px; position: relative; }
      .vape-tab-head button::after { background: linear-gradient(90deg, var(--vape-accent), var(--vape-accent-2)); bottom: 0; content: ""; height: 2px; left: 10px; position: absolute; right: 10px; transform: scaleX(0); transform-origin: center; transition: transform .24s ease; }
      .vape-tab-head button:hover, .vape-tab-head button.is-active { color: #1c1c1c; }
      .vape-tab-head button.is-active::after { transform: scaleX(1); }
      .vape-tab-panel { display: none; }
      .vape-tab-panel.is-active { animation: vapeFadeUp .38s ease both; display: block; }
      .vape-tab-layout { align-items: stretch; display: grid; gap: 30px; grid-template-columns: 34% 1fr; }
      .vape-tabs-products .vape-tab-layout { grid-template-columns: 1fr 34%; }
      .vape-tabs-products .vape-tab-banner { order: 2; }
      .vape-tab-banner { border-radius: 10px; display: block; overflow: hidden; position: relative; }
      .vape-tab-banner img { height: 100%; min-height: 520px; object-fit: cover; width: 100%; }
      .vape-tab-banner .vape-btn { bottom: 36px; left: 36px; position: absolute; }
      .vape-product-grid { display: grid; gap: 30px; grid-template-columns: repeat(var(--vape-grid-count, 4), minmax(0, 1fr)); }

      .vape-countdown { background: #00341d; color: #fff; padding: 64px 0; }
      .vape-countdown-grid { align-items: center; display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
      .vape-countdown-copy { text-align: center; }
      .vape-countdown h2 { color: #fff; font-size: 2.75rem; font-weight: 700; line-height: 1.18; margin: 0; }
      .vape-countdown p { color: #e8e8e8; margin: 15px auto 0; max-width: 520px; }
      .vape-clock { background: #fff; border-radius: 12px; box-shadow: 0 12px 28px rgba(0,0,0,.16); display: inline-flex; gap: 4px; margin-top: 30px; padding: 8px; }
      .vape-clock-item { color: #1c1c1c; min-width: 80px; padding: 12px 10px; text-align: center; }
      .vape-clock-item strong { display: block; font-size: 1.8rem; line-height: 1; }
      .vape-clock-item strong.is-changing { animation: vapeDigit .28s ease; }
      .vape-clock-item span { color: #8e8e8e; display: block; font-size: .78rem; margin-top: 7px; text-transform: uppercase; }
      .vape-countdown-media img { margin: 0 auto; max-height: 520px; object-fit: contain; }

      .vape-image-text { padding: 70px 0; }
      .vape-image-text-grid { align-items: center; display: grid; gap: 50px; grid-template-columns: 1fr 1fr; }
      .vape-image-text-media { border-radius: 10px; overflow: hidden; }
      .vape-image-text-copy { text-align: right; }
      .vape-image-text-copy h2 { font-size: 3rem; font-weight: 700; line-height: 1.2; margin: 0 0 18px; }
      .vape-image-text-copy p { color: #8e8e8e; line-height: 1.8; margin: 0 0 24px auto; max-width: 640px; }
      .vape-image-text-price { background: linear-gradient(180deg, var(--vape-accent), var(--vape-accent-2)); -webkit-background-clip: text; color: #ff8a00; display: inline-block; font-size: 1.9rem; font-weight: 700; margin-right: 18px; -webkit-text-fill-color: transparent; }

      .vape-testimonials { background: #f7f7f7; padding: 70px 0; }
      .vape-testimonial-card { background: #fff; border-radius: 10px; display: grid; grid-template-columns: 42% 1fr; overflow: hidden; }
      .vape-testimonial-card img { height: 100%; min-height: 330px; object-fit: cover; width: 100%; }
      .vape-testimonial-copy { align-items: center; display: flex; padding: 40px; }
      .vape-quote { background: linear-gradient(180deg, var(--vape-accent), var(--vape-accent-2)); -webkit-background-clip: text; color: #ff8a00; font-size: 3rem; font-weight: 700; line-height: .8; margin-bottom: 24px; -webkit-text-fill-color: transparent; }
      .vape-testimonial-copy h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 20px; }
      .vape-testimonial-copy p { color: #6d6d6d; font-size: 1rem; line-height: 1.8; margin: 0; }

      .vape-blog { padding: 70px 0 90px; }
      .vape-blog-card { text-align: center; }
      .vape-blog-media { border-radius: 10px; display: block; margin-bottom: 24px; overflow: hidden; position: relative; }
      .vape-blog-media img { aspect-ratio: 4 / 3; height: 100%; object-fit: cover; transition: transform .35s linear; width: 100%; }
      .vape-blog-card:hover img { transform: scale(1.05); }
      .vape-blog-date { align-items: center; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); background: rgba(255,77,169,.2); border-radius: 15px; color: #fff; display: inline-flex; font-size: 14px; height: 50px; justify-content: center; left: 10px; padding: 0 15px; position: absolute; top: 10px; white-space: nowrap; }
      .vape-blog-date i { display: none; }
      .vape-blog-meta { color: #8e8e8e; font-size: .88rem; margin-bottom: 10px; }
      .vape-blog-card h3 { font-size: 1.2rem; font-weight: 500; line-height: 1.45; margin: 0 0 12px; }
      .vape-blog-card p { color: #8e8e8e; line-height: 1.65; margin: 0 auto 16px; max-width: 520px; }
      .vape-modal { align-items: center; background: rgba(0,0,0,.72); display: none; inset: 0; justify-content: center; opacity: 0; padding: 20px; position: fixed; transition: opacity .24s ease; z-index: 9999; }
      .vape-modal.is-open { display: flex; }
      .vape-modal.is-visible { opacity: 1; }
      .vape-modal-box { aspect-ratio: 16 / 9; background: #000; border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,.35); max-width: 960px; overflow: visible; position: relative; transform: translateY(20px) scale(.98); transition: transform .24s ease; width: min(100%, 960px); }
      .vape-modal.is-visible .vape-modal-box { transform: translateY(0) scale(1); }
      .vape-modal iframe { border: 0; border-radius: 10px; height: 100%; width: 100%; }
      .vape-modal video { background: #000; border: 0; border-radius: 10px; height: 100%; object-fit: contain; width: 100%; }
      .vape-modal-close { background: #fff; border: 0; border-radius: 50%; height: 38px; position: absolute; right: -14px; top: -14px; width: 38px; }
      .vape-quick-modal .vape-modal-box { aspect-ratio: auto; background: #fff; display: grid; grid-template-columns: minmax(260px, 44%) 1fr; max-width: 860px; min-height: 420px; overflow: visible; }
      .vape-quick-media { align-items: center; background: #f7f7f7; display: flex; justify-content: center; min-height: 420px; padding: 34px; }
      .vape-quick-media img { max-height: 350px; object-fit: contain; width: 100%; }
      .vape-quick-copy { padding: 44px; }
      .vape-quick-copy h3 { font-size: 1.7rem; font-weight: 700; line-height: 1.25; margin: 0 0 16px; }
      .vape-quick-price { align-items: center; display: flex; gap: 12px; margin-bottom: 22px; }
      .vape-quick-price span { color: #1c1c1c; font-size: 1.25rem; font-weight: 700; }
      .vape-quick-price del { color: #999; }
      .vape-quick-copy p { color: #7a7a7a; line-height: 1.7; margin-bottom: 24px; }
      .vape-toast { background: #1c1c1c; border-radius: 6px; bottom: 26px; box-shadow: 0 14px 34px rgba(0,0,0,.2); color: #fff; left: 50%; min-width: 220px; opacity: 0; padding: 13px 18px; pointer-events: none; position: fixed; text-align: center; transform: translate(-50%, 18px); transition: opacity .22s ease, transform .22s ease; z-index: 10000; }
      .vape-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

      @keyframes vapeHeroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
      @keyframes vapeFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
      @keyframes vapeDigit { 0% { transform: translateY(-7px); opacity: .35; } 100% { transform: translateY(0); opacity: 1; } }
      @keyframes vapeCountdownGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
      @keyframes vapeCountdownFloat { 0%, 100% { transform: translate3d(0, -1.2%, 0); } 50% { transform: translate3d(0, 1.2%, 0); } }

      @media (max-width: 1199px) {
        .vape-heading h2, .vape-image-text-copy h2 { font-size: 2.4rem; }
        .vape-hero-caption :is(h1, h2) { font-size: 2.25rem; }
        .vape-policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      }
      @media (max-width: 991px) {
        .vape-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .vape-image-grid, .vape-video-grid, .vape-countdown-grid, .vape-image-text-grid, .vape-tab-layout, .vape-tabs-products .vape-tab-layout { grid-template-columns: 1fr; }
        .vape-tabs-products .vape-tab-banner { order: 0; }
        .vape-tab-banner img { min-height: 360px; }
        .vape-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .vape-row-track > * { flex-basis: calc((100% - (var(--vape-mobile-count, 1) - 1) * 18px) / var(--vape-mobile-count, 1)); }
        .vape-row-track { gap: 18px; }
        .vape-image-text-copy { text-align: left; }
        .vape-testimonial-card { grid-template-columns: 1fr; }
        .vape-hero-caption { max-width: 64%; }
        .vape-quick-modal .vape-modal-box { grid-template-columns: 1fr; max-width: 560px; }
        .vape-quick-media { min-height: 280px; }
      }
      @media (max-width: 575px) {
        .vape-heading h2, .vape-image-text-copy h2, .vape-countdown h2 { font-size: 2rem; }
        .vape-hero-media { aspect-ratio: 1 / 1.1; }
        .vape-hero-caption { left: 22px !important; max-width: calc(100% - 44px); right: auto !important; text-align: left !important; transform: translateY(-50%) !important; }
        .vape-hero-caption :is(h1, h2) { font-size: 1.55rem; line-height: 1.35; }
        .vape-hero-caption p { font-size: .9rem; }
        .vape-gallery-grid, .vape-policy-grid, .vape-image-grid-right, .vape-product-grid { grid-template-columns: 1fr; }
        .vape-policy-card { align-items: flex-start; }
        .vape-promo-copy { left: 24px; max-width: 72%; top: 24px; }
        .vape-promo-copy h3 { font-size: 1.55rem; }
        .vape-clock { display: grid; grid-template-columns: repeat(2, 1fr); }
        .vape-clock-item { min-width: 0; }
        .vape-hero-arrow { display: none; }
        .vape-hero-dots { bottom: 18px; }
        .vape-quick-copy { padding: 28px; }
        .vape-product-actions { opacity: 0; pointer-events: none; transform: translateX(18px); }
        .vape-product-card:hover .vape-product-actions, .vape-product-card:focus-within .vape-product-actions { opacity: 1; pointer-events: auto; transform: translateX(0); }
      }

      .vape-section { --vape-accent: #d253ff; --vape-accent-2: #ff4da9; --vape-dark: #1e1e20; --vape-card: #2b282f; background: var(--vape-dark); color: #fff; font-family: Poppins, Arial, sans-serif; }
      .vape-heading h2, .vape-heading p, .vape-product-card h3, .vape-product-card h3 a, .vape-product-price span { color: #fff; }
      .vape-heading h2 { font-size: 2.5rem; line-height: 1.25; text-transform: none; }
      .vape-heading p { color: #cfcbd5; }
      .vape-btn { background: linear-gradient(89deg, #d253ff, #ff4da9 52%); border-radius: 999px; min-height: 46px; padding: 0 26px; text-transform: capitalize; }
      .vape-btn:hover { filter: brightness(1.08); }
      .vape-link { color: #fff; }
      .vape-link:hover { color: #ff4da9; }
      .vape-hero { background: #1e1e20; }
      .vape-hero-media { aspect-ratio: 2400 / 1000; background: #1e1e20; }
      .vape-hero-media img { opacity: 1; }
      .vape-hero-caption { max-width: 42%; }
      .vape-hero-caption.pos-left { left: 6%; }
      .vape-hero-caption :is(h1, h2) { color: #fff; font-size: 42px; font-weight: 700; line-height: 1.18; margin-bottom: 15px; max-width: 680px; white-space: normal; }
      .vape-hero-caption p { color: #d8d4dd; font-size: 18px; line-height: 1.5; margin-bottom: 25px; max-width: 620px; }
      .vape-hero-product { max-width: 41%; pointer-events: none; position: absolute; right: 5%; top: 0; width: 41%; z-index: 2; }
      .vape-hero-product img { height: auto; object-fit: contain; width: 100%; }
      .vape-policy { padding: 34px 0; }
      .vape-policy-card { background: #2b282f; border: 1px solid rgba(255,255,255,.06); border-radius: 0; color: #fff; min-height: 128px; }
      .vape-policy-card h3 { color: #fff; }
      .vape-policy-card p { color: #b9b4c0; }
      .vape-story { padding: 28px 0 42px; }
      .vape-story-grid { align-items: stretch; display: grid; gap: 30px; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
      .vape-story-media { border-radius: 25px; display: block; overflow: hidden; position: relative; }
      .vape-story-video { aspect-ratio: 1530 / 780; }
      .vape-story-feature { aspect-ratio: 1080 / 780; }
      .vape-story-media img { height: 100%; object-fit: cover; transition: transform .65s ease; width: 100%; }
      .vape-story-media:hover img { transform: scale(1.05); }
      .vape-story-copy { color: #fff; left: 9%; max-width: 82%; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
      .vape-story-copy h2 { color: #fff; font-size: 2.5rem; font-weight: 700; line-height: 1.25; margin: 0 0 20px; }
      .vape-story-copy p { color: #cfcbd5; line-height: 1.7; margin: 0 0 28px; }
      .vape-gallery { padding: 34px 0; }
      .vape-category-slider .vape-row-track > * { flex-basis: calc((100% - (var(--vape-pc-count, 4) - 1) * 30px) / var(--vape-pc-count, 4)); }
      .vape-gallery-card { aspect-ratio: 630 / 480; border-radius: 25px; }
      .vape-gallery-caption { bottom: 34px; left: 30px; }
      .vape-gallery-caption h3 { color: #fff; font-size: 1.25rem; font-weight: 500; }
      .vape-promo-pair { padding: 34px 0; }
      .vape-promo-pair-grid { display: grid; gap: 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .vape-promo-pair .vape-promo-card { aspect-ratio: 690 / 360; border-radius: 25px; }
      .vape-promo-pair .vape-promo-copy { left: 42px; max-width: 48%; top: 50%; transform: translateY(-50%); }
      .vape-promo-pair .vape-promo-copy .vape-btn {
        background: transparent;
        border: 0;
        border-radius: 0;
        color: #fff;
        display: inline-flex;
        font-size: 16px;
        font-weight: 500;
        gap: 8px;
        line-height: 1.4;
        min-height: 0;
        padding: 0;
        text-transform: none;
      }
      .vape-promo-pair .vape-promo-copy .vape-btn::after {
        content: "->";
        font-weight: 500;
      }
      .vape-promo-pair .vape-promo-copy .vape-btn:hover {
        color: #ff4da9;
        filter: none;
      }
      .vape-products, .vape-tabs-section, .vape-blog { padding: 42px 0; }
      .vape-product-card { background: var(--vape-card); color: #fff; padding-bottom: 22px; }
      .vape-product-media { background: transparent; border-radius: 0; margin-bottom: 16px; padding: 0; }
      .vape-product-media::before { padding-top: 133.333333%; }
      .vape-product-media img { height: 100%; left: 0; object-fit: contain; top: 0; width: 100%; }
      .vape-product-price del { color: #d6d6d6; }
      .vape-product-badge { background: #d40909; }
      .vape-countdown { background: #1e1e20; color: #fff; overflow: hidden; padding: 0; position: relative; }
      .vape-countdown::before { animation: vapeCountdownGradient 15s linear infinite; background: linear-gradient(90deg, rgba(23,23,26,1) 0%, rgba(56,43,72,.88) 34%, rgba(47,50,72,.82) 62%, rgba(23,24,28,1) 100%); background-size: 400% 400%; content: ""; height: 58%; inset: 50% 0 auto; position: absolute; transform: translateY(-50%); z-index: 0; }
      .vape-countdown .container-fluid { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: none !important; padding-left: 18px; padding-right: 18px; position: relative; width: 100vw; z-index: 1; }
      .vape-countdown-grid { grid-template-columns: minmax(320px, 34%) minmax(0, 66%); gap: 34px; min-height: clamp(520px, 38vw, 720px); }
      .vape-countdown-copy { padding-left: 0; text-align: left; }
      .vape-countdown h2 { font-family: Orbitron, Poppins, Arial, sans-serif; font-size: clamp(2.4rem, 4vw, 4.4rem); font-weight: 600; letter-spacing: 0; line-height: 1.05; }
      .vape-countdown p { color: #fff; font-size: clamp(1.05rem, 1.45vw, 1.45rem); font-weight: 500; line-height: 1.5; margin: 28px 0 0; max-width: 620px; }
      .vape-clock { background: transparent; border-radius: 0; box-shadow: none; display: inline-flex; gap: 20px; margin-top: 38px; padding: 0; }
      .vape-clock-item { align-items: center; background: #fff; border-radius: 10px; color: #ff4da9; display: flex; flex-direction: column; height: 114px; justify-content: center; min-width: 108px; padding: 14px 18px; }
      .vape-clock-item strong { background: linear-gradient(180deg, #d253ff, #ff4da9); -webkit-background-clip: text; color: #ff4da9; display: block; font-size: 1.75rem; font-weight: 700; line-height: 1; -webkit-text-fill-color: transparent; }
      .vape-clock-item span { color: #ff4da9; font-size: .83rem; font-weight: 700; line-height: 1; margin-top: 12px; }
      .vape-countdown .mt-4 { margin-top: 38px !important; }
      .vape-countdown-media { align-self: stretch; display: flex; justify-content: center; min-width: 0; overflow: hidden; position: relative; transform: translateZ(0); }
      .vape-countdown-media img { align-self: center; animation: vapeCountdownFloat 5.6s ease-in-out infinite; margin: 0 auto; max-height: none; object-fit: contain; position: relative; transform-origin: center; transition: transform 1.2s ease-out, filter 1.2s ease-out; width: min(100%, 860px); z-index: 1; }
      .vape-countdown-media:hover img { animation: none; filter: drop-shadow(0 24px 46px rgba(255,77,169,.14)); transform: translate3d(0, 0, 0) scale(1.05); }
      .vape-tab-layout, .vape-tabs-products .vape-tab-layout { display: block; }
      .vape-tab-banner { display: none; }
      .vape-tab-head button { color: #b9b4c0; }
      .vape-tab-head button:hover, .vape-tab-head button.is-active { color: #fff; }
      .vape-brands { padding: 26px 0 46px; }
      .vape-brand-grid { display: grid; gap: 30px; grid-template-columns: repeat(5, minmax(0, 1fr)); justify-content: center; }
      .vape-brand-card { align-items: center; background: #2b282f; border-radius: 0; display: flex; min-height: 150px; justify-content: center; padding: 24px; }
      .vape-brand-card img { max-height: 90px; object-fit: contain; opacity: 1; transition: transform .35s ease; }
      .vape-brand-card:hover img { transform: translateY(-4px); }
      .vape-video { background: #1e1e20; padding: 42px 0; }
      .vape-video-stage { align-items: center; display: flex; height: 800px; justify-content: center; overflow: hidden; position: relative; }
      .vape-video-bg { border: 0; height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
      .vape-play { background: linear-gradient(90deg, #d253ff, #ff4da9); box-shadow: 0 0 36px rgba(255,77,169,.4); color: #fff; }
      .vape-testimonials { background: #1e1e20; padding: 42px 0; }
      .vape-review-split { display: grid; gap: 30px; grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .vape-review-card { border-radius: 25px; height: 650px; overflow: hidden; position: relative; }
      .vape-review-card img { height: 100%; object-fit: cover; transition: transform .55s ease; width: 100%; }
      .vape-review-card:hover img { transform: scale(1.035); }
      .vape-review-copy { background: rgba(255,77,169,.2); bottom: 0; color: #fff; left: 0; padding: 22px; position: absolute; right: 0; transform: translateY(calc(100% - 72px)); transition: transform .3s ease; }
      .vape-review-card:hover .vape-review-copy { transform: translateY(0); }
      .vape-review-copy h3 { color: #fff; font-size: 1.25rem; font-weight: 700; margin: 0 0 14px; }
      .vape-review-copy p { color: #fff; font-size: 1rem; line-height: 1.5; margin: 0; }
      .vape-image-text { padding: 42px 0; }
      .vape-image-text-grid { background: linear-gradient(90deg, #202126, #322235); border-radius: 25px; grid-template-columns: minmax(280px, 48%) 1fr; padding: 50px; }
      .vape-image-text-media { border-radius: 0; }
      .vape-image-text-media img { object-fit: contain; }
      .vape-image-text-copy { text-align: left; }
      .vape-image-text-copy h2 { color: #fff; font-size: 2.7rem; }
      .vape-image-text-copy p { color: #cfcbd5; margin-left: 0; }
      .vape-blog-card { color: #fff; }
      .vape-blog-card h3 a { color: #fff; }
      .vape-blog-card p { color: #cfcbd5; }
      .vape-blog-meta { color: #cfcbd5; }
      .vape-section { font-family: var(--vape-font-body, Poppins, Arial, sans-serif); font-size: 14px; line-height: 21px; --vape-section-space: 32px; }
      .vape-heading { margin-bottom: 60px; }
      .vape-heading h2 { font-family: var(--vape-font-heading, Orbitron, Poppins, Arial, sans-serif); font-size: 40px; font-weight: 600; letter-spacing: 0; line-height: 60px; }
      .vape-heading p { font-size: 1rem; font-weight: 400; }
      .vape-policy, .vape-story, .vape-gallery, .vape-products, .vape-tabs-section, .vape-brands, .vape-video, .vape-image-split, .vape-featured-product, .vape-blog { padding: 0; }
      .vape-policy { padding-top: 0; padding-bottom: 0; }
      .vape-story { padding-top: 30px; }
      .vape-story-media, .vape-image-slide-card, .vape-gallery-card, .vape-image-split-card, .vape-blog-media { border-radius: 24px; overflow: hidden; transform: translateZ(0); }
      .vape-image-slide-card { aspect-ratio: 630 / 480; display: block; position: relative; }
      .vape-image-slide-card img { height: 100%; object-fit: cover; transition: transform 1.5s ease-out, filter .45s ease; width: 100%; }
      .vape-image-slide-card:hover img { filter: brightness(1.04); transform: scale(1.06); }
      .vape-image-slide-caption { bottom: 30px; color: #fff; left: 30px; position: absolute; right: 20px; z-index: 3; }
      .vape-image-slide-caption strong { color: #fff; display: block; font-size: 18px; font-weight: 500; line-height: 27px; margin-bottom: 10px; }
      .vape-image-slide-caption span { color: #ff4da9; display: inline-flex; font-size: 14px; font-weight: 500; gap: 8px; line-height: 21px; }
      .vape-image-slide-caption span::after { content: "->"; }
      .vape-products .vape-row-track > *, .vape-blog .vape-row-track > * { flex-basis: calc((100% - (var(--vape-pc-count, 4) - 1) * 30px) / var(--vape-pc-count, 4)); }
      .vape-product-card { border: 1px solid #2b282f; border-radius: 25px; overflow: visible; position: relative; transition: border-color .25s ease; }
      .vape-product-card:hover { border-color: rgba(255,77,169,.45); transform: none; }
      .vape-product-media { background: #2b282f; }
      .vape-product-actions { right: 15px; top: 18px; }
      .vape-product-actions button { height: 40px; width: 40px; }
      .vape-product-rating { color: #ff4da9; letter-spacing: 1px; }
      .vape-product-card h3 { padding: 0 16px; }
      .vape-product-price { padding: 0 16px 2px; }
      .vape-product-swatch { align-items: center; display: flex; gap: 7px; justify-content: center; margin: 11px 0 0; }
      .vape-product-swatch span { border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.18); display: block; height: 14px; width: 14px; }
      .vape-product-swatch span:nth-child(1) { background: #d5d9e0; }
      .vape-product-swatch span:nth-child(2) { background: #7952ff; }
      .vape-product-swatch span:nth-child(3) { background: #151515; }
      .vape-tab-head button { border-radius: 0; font-size: 16px; font-weight: 400; line-height: 24px; min-height: 0; padding: 0; }
      .vape-tab-head button.is-active { background: transparent; color: #ff4da9; }
      .vape-tab-head button::after { display: none; }
      .vape-brands { padding-top: 0; }
      .vape-brand-grid { gap: 30px 0; grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .vape-brand-card { background: transparent; border: 0; min-height: 110px; padding: 0; }
      .vape-brand-card img { max-height: 100px; max-width: 330px; opacity: 1; }
      .vape-video { padding-left: 0; padding-right: 0; }
      .vape-video-stage { height: clamp(520px, 44vw, 800px); }
      .vape-image-split-grid { display: grid; gap: 30px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .vape-image-split-card { aspect-ratio: 330 / 500; color: #fff; display: block; position: relative; }
      .vape-image-split-card img { height: 100%; object-fit: cover; transition: transform 1.5s ease-out; width: 100%; }
      .vape-image-split-card:hover img { transform: scale(1.07); }
      .vape-image-split-copy { background: rgba(255,77,169,.2); bottom: 0; left: 0; padding: 22px; position: absolute; right: 0; transform: translateY(calc(100% - 76px)); transition: transform .3s ease; z-index: 3; }
      .vape-image-split-card:hover .vape-image-split-copy { transform: translateY(0); }
      .vape-image-split-copy strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
      .vape-image-split-copy span { color: #fff; display: block; font-size: .92rem; line-height: 1.55; }
      .vape-featured-product { padding-left: 0; padding-right: 0; }
      .vape-featured-product-bg { align-items: center; background: #17171a; border-radius: 25px; display: grid; gap: 46px; grid-template-columns: minmax(0, 52%) minmax(320px, 1fr); overflow: hidden; padding: clamp(36px, 4vw, 72px); position: relative; }
      .vape-featured-product-bg::before { background: linear-gradient(90deg, rgba(162,199,84,.24), rgba(199,84,84,.24) 30%, rgba(148,84,199,.34) 70%, rgba(84,178,199,.24)); content: ""; filter: blur(50px); height: 55%; left: -8%; position: absolute; top: 20%; width: 70%; }
      .vape-featured-media, .vape-featured-copy { position: relative; z-index: 1; }
      .vape-featured-media img { animation: vapeCountdownFloat 6s ease-in-out infinite; margin: 0 auto; max-height: 620px; object-fit: contain; width: min(100%, 720px); }
      .vape-featured-copy h2 { color: #fff; font-family: var(--vape-font-heading, Orbitron, Poppins, Arial, sans-serif); font-size: clamp(2rem, 3.2vw, 3.8rem); font-weight: 600; line-height: 1.1; margin: 0 0 22px; }
      .vape-featured-copy p { color: #cfcbd5; font-size: 1.05rem; line-height: 1.7; margin: 0 0 26px; max-width: 620px; }
      .vape-featured-price { color: #ff4da9; display: inline-block; font-size: 1.8rem; font-weight: 700; margin: 0 18px 0 0; vertical-align: middle; }
      .vape-blog-media { border-radius: 24px; }
      .vape-blog-media img { aspect-ratio: 4 / 3; }
      @media (min-width: 992px) {
        .vape-image-text-media { order: 2; }
        .vape-image-text-copy { order: 1; }
      }
      @media (min-width: 1200px) and (max-width: 1440px) {
        .vape-video-stage { height: 600px; }
        .vape-review-card { height: 500px; }
        .vape-countdown::before { height: 66%; }
        .vape-countdown-grid { min-height: clamp(520px, 42vw, 650px); }
      }
      @media (min-width: 992px) and (max-width: 1199px) {
        .vape-countdown::before { height: 70%; }
        .vape-countdown-grid { min-height: 560px; }
      }
      @media (max-width: 991px) {
        .vape-story-grid, .vape-promo-pair-grid { grid-template-columns: 1fr; }
        .vape-category-slider .vape-row-track > * { flex-basis: calc((100% - (var(--vape-mobile-count, 2) - 1) * 18px) / var(--vape-mobile-count, 2)); }
        .vape-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .vape-video-stage { height: 500px; }
        .vape-review-split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .vape-image-split-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .vape-review-card { height: 400px; }
        .vape-featured-product-bg { grid-template-columns: 1fr; }
        .vape-featured-media { order: 2; }
        .vape-featured-copy { order: 1; }
        .vape-hero-product { opacity: .42; right: 0; max-width: 72%; }
        .vape-hero-caption { max-width: 72%; }
        .vape-countdown::before { height: 100%; }
        .vape-countdown-grid { gap: 26px; grid-template-columns: 1fr; min-height: auto; padding: 44px 0; }
        .vape-countdown-media { order: -1; }
        .vape-countdown-media img { width: min(100%, 620px); }
      }
      @media (max-width: 575px) {
        .vape-hero-media { aspect-ratio: 1 / 1.35; }
        .vape-hero-caption :is(h1, h2) { font-size: 2rem; }
        .vape-policy, .vape-gallery, .vape-promo-pair, .vape-products, .vape-tabs-section, .vape-countdown, .vape-video, .vape-testimonials, .vape-image-text, .vape-image-split, .vape-featured-product, .vape-blog { padding-top: 30px; padding-bottom: 30px; }
        .vape-heading { margin-bottom: 35px; }
        .vape-heading h2 { font-size: 22.88px; line-height: 34.32px; }
        .vape-brands { padding: 20px 0 32px; }
        .vape-story { padding: 30px 0 28px; }
        .vape-story-video, .vape-story-feature { aspect-ratio: 1 / .72; }
        .vape-brand-grid, .vape-review-split, .vape-image-split-grid { grid-template-columns: 1fr; }
        .vape-image-split-card { aspect-ratio: 390 / 460; }
        .vape-image-split-copy { transform: none; }
        .vape-featured-product-bg { border-radius: 16px; padding: 28px; }
        .vape-featured-copy h2 { font-size: 2rem; }
        .vape-featured-media img { max-height: 360px; }
        .vape-video-stage { height: 400px; }
        .vape-countdown-grid { padding: 30px 0; }
        .vape-clock { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
        .vape-clock-item { height: 98px; min-width: 0; }
        .vape-review-card { height: auto; min-height: 420px; }
        .vape-review-copy { transform: none; }
        .vape-image-text-grid { padding: 24px; }
        .vape-promo-pair .vape-promo-copy { left: 24px; max-width: 72%; }
      }
      .shopify-section .distance {
        position: relative;
      }
      .gradient-animate {
        animation: vapeNovGradient var(--bg-gradient-time, 15s) linear infinite;
        background: var(--bg-gradient, linear-gradient(90deg, rgba(162,199,84,1), rgba(199,84,84,1) 30%, rgba(148,84,199,1) 70%, rgba(84,178,199,1) 100%));
        background-size: 400% 400% !important;
      }
      .wow,
      .vape-animate {
        will-change: opacity, transform;
      }
      .nov-sh-image-2 img {
        transform-origin: center center;
        transition: transform 1.5s ease-out, filter .45s ease;
      }
      .nov-sh-image-2:hover img {
        transform: scale(1.035);
      }
      .section-slideshow.vape-section,
      .section-slideshow .vape-hero,
      .section-slideshow .vape-hero-stage {
        background: transparent;
      }
      .section-slideshow .vape-hero-media {
        aspect-ratio: 2400 / 1000;
      }
      .section-slideshow .vape-hero-caption :is(h1, h2) {
        font-family: var(--vape-font-heading, Orbitron, Poppins, Arial, sans-serif);
        font-weight: 700;
        line-height: 1.18;
        white-space: normal;
      }
      .section-slideshow .vape-hero-controls {
        bottom: 24px;
        gap: 16px;
      }
      .section-slideshow .vape-hero-dots {
        gap: 14px;
      }
      .section-slideshow .vape-hero-dots button {
        height: 8px;
        width: 8px;
      }
      .section-slideshow .vape-hero-arrow {
        height: 30px;
        width: 30px;
      }
      .section-slideshow .vape-hero-arrow::before {
        height: 14px;
        width: 14px;
      }
      .section-slideshow .vape-btn {
        font-weight: 500;
        min-height: 51px;
        padding: 0 30px;
      }
      .section-policy .vape-policy-card {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 0;
        gap: 25px;
        min-height: 100px;
        overflow: visible;
        padding: 0;
        position: relative;
      }
      .section-policy .vape-policy-card img {
        background: #1e1e20;
        border-radius: 50%;
        box-shadow: 0 0 36px rgba(255, 77, 169, .4);
        flex: 0 0 100px;
        height: 100px;
        object-fit: contain;
        padding: 25px;
        transform: translate(0);
        width: 100px;
      }
      .section-policy .vape-policy-card span {
        position: relative;
        z-index: 1;
      }
      .section-policy .vape-policy-card h3 {
        color: #fff;
        font-family: var(--vape-font-body, Poppins, Arial, sans-serif);
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        margin: 0;
      }
      .section-policy .vape-policy-card p {
        color: #fff;
        font-family: var(--vape-font-body, Poppins, Arial, sans-serif);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 15px;
        max-width: 340px;
      }
      .section-policy .vape-policy-card:hover img {
        animation: vapePolicyIconHover 1.2s linear;
      }
      @keyframes vapePolicyIconHover {
        16.65% { transform: translate(7px); }
        33.33% { transform: translate(-5px); }
        49.95% { transform: translate(3px); }
        66.6% { transform: translate(-2px); }
        83.25% { transform: translate(1px); }
        100% { transform: translate(0); }
      }
      .section-img-group .vape-story {
        padding-top: 0;
        padding-bottom: 0;
      }
      .section-img-group .vape-inner.container-fluid {
        max-width: none !important;
        padding-left: 75px !important;
        padding-right: 75px !important;
        width: 100%;
      }
      .section-img-group .vape-story-grid {
        align-items: stretch;
        display: grid;
        gap: 30px;
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
      }
      .section-img-group .vape-story-media {
        border-radius: 25px;
        display: block;
        overflow: hidden;
        position: relative;
      }
      .section-img-group .vape-story-video {
        aspect-ratio: 1530 / 780;
      }
      .section-img-group .vape-story-feature {
        aspect-ratio: 1080 / 780;
      }
      .section-img-group .vape-story-media img {
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease-out, filter .45s ease;
        width: 100%;
      }
      .section-img-group .vape-story-media:hover img {
        filter: brightness(1.04);
        transform: scale(1.045);
      }
      .section-img-group .vape-story-copy {
        color: #fff;
        display: block;
        left: 9%;
        max-width: 83%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
      }
      .section-img-group .vape-story-copy h2 {
        color: #fff;
        font-family: var(--vape-font-heading, Orbitron, Poppins, Arial, sans-serif);
        font-size: 36px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.5;
        margin: 0 0 16px;
      }
      .section-img-group .vape-story-copy p {
        color: #f0f0f0;
        font-family: var(--vape-font-body, Poppins, Arial, sans-serif);
        font-size: 16px;
        font-weight: 300;
        line-height: 1.5;
        margin: 0 0 32px;
      }
      .section-img-group .vape-story-copy .vape-btn {
        background: #1e1e20;
        border-radius: 0;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        min-height: 44px;
        padding: 0 25px;
      }
      .section-img-group .vape-play {
        background: linear-gradient(90deg, #d253ff, #ff4da9);
        box-shadow: none;
        color: #fff;
        height: 70px;
        padding-left: 4px;
        width: 70px;
      }
      .section-gallery-image.vape-section-gallery .vape-row-slider,
      .section-product-slider .vape-row-slider,
      .section-blog .vape-row-slider {
        overflow: visible;
      }
      .section-policy .vape-inner.container-fluid,
      .section-gallery-image.vape-section-gallery .vape-inner.container-fluid {
        max-width: 1800px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100%;
      }
      .section-policy.vape-section {
        padding-bottom: 110px !important;
        padding-top: 30px !important;
      }
      .section-gallery-image.vape-section-gallery .vape-row-track {
        gap: 30px;
        padding: 0;
      }
      .section-gallery-image.vape-section-gallery .vape-row-track > * {
        flex-basis: calc((100% - 90px) / 4);
      }
      .section-gallery-image.vape-section-gallery .vape-row-track,
      .section-product-slider .vape-row-track,
      .section-blog .vape-row-track {
        scroll-snap-type: x mandatory;
      }
      .section-gallery-image .vape-promo-pair-grid {
        gap: 30px;
      }
      .section-product-slider .vape-products {
        padding-top: 0;
        padding-bottom: 0;
      }
      .section-product-slider .vape-row-track > * {
        flex-basis: calc((100% - 90px) / 4);
      }
      .section-product-slider .vape-product-controls {
        gap: 14px;
        margin-top: 20px !important;
      }
      .section-product-slider .vape-product-controls .vape-nav {
        --slider-arrow-color: #fff;
        --slider-arrow-bg: transparent;
        --slider-arrow-border: transparent;
        --slider-arrow-color-act: #ff4da9;
        --slider-arrow-bg-act: transparent;
        --slider-arrow-border-act: transparent;
        align-items: center;
        display: flex;
        flex: 0 0 30px;
        height: 30px;
        justify-content: center;
        opacity: 1;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 30px;
      }
      .section-product-slider .vape-product-controls .vape-nav i {
        display: none;
      }
      .section-product-slider .vape-product-controls .vape-nav::before {
        border-color: currentColor;
        border-style: solid;
        border-width: 0 0 2px 2px;
        content: "";
        height: 14px;
        width: 14px;
      }
      .section-product-slider .vape-product-controls .vape-nav-prev::before {
        transform: rotate(45deg);
      }
      .section-product-slider .vape-product-controls .vape-nav-next::before {
        transform: rotate(-135deg);
      }
      .section-product-slider .vape-product-controls .vape-nav.is-disabled {
        opacity: 1;
        pointer-events: auto;
      }
      .section-product-slider .swiper-pagination {
        align-items: center;
        display: flex;
        gap: 18px;
        position: static;
        width: auto;
      }
      .section-product-slider .swiper-pagination-bullet {
        background: var(--slider-dot-color, #ededed);
        border-radius: 50%;
        color: transparent;
        display: block;
        font-size: 0;
        height: 9px;
        line-height: 0;
        opacity: 1;
        overflow: hidden;
        padding: 0;
        text-indent: -9999px;
        width: 9px;
      }
      .section-product-slider .swiper-pagination-bullet-active {
        background: var(--slider-dot-color-act, #ff4da9);
      }
      .section-collection-tabs .vape-tab-head {
        gap: 40px;
        margin: 0 0 60px;
      }
      .section-collection-tabs .vape-tab-head button {
        background: transparent;
        border: 0;
        border-radius: 0;
        color: #fff;
        font-family: var(--vape-font-body, Poppins, Arial, sans-serif);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        min-height: 0;
        padding: 0;
      }
      .section-collection-tabs .vape-tab-head button:hover,
      .section-collection-tabs .vape-tab-head button.is-active {
        background: transparent;
        color: #ff4da9;
      }
      .section-collection-tabs .vape-tab-head button::after {
        display: none;
      }
      .section-collection-tabs .vape-product-grid {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }
      .section-collection-tabs .vape-product-grid::-webkit-scrollbar {
        display: none;
      }
      .section-collection-tabs .vape-product-grid > * {
        flex: 0 0 calc((100% - 90px) / 4);
        scroll-snap-align: start;
      }
      .section-product-slider .item-product,
      .section-collection-tabs .item-product {
        background: #2b282f;
        border: 0;
        border-radius: 25px;
        color: #fff;
        min-height: 0;
        overflow: visible;
        padding: 10px 10px 55px;
        transition: box-shadow .28s ease;
      }
      .section-product-slider .item-product:hover,
      .section-collection-tabs .item-product:hover {
        box-shadow: none;
      }
      .section-product-slider .product__title a,
      .section-product-slider .vape-product-price span,
      .section-collection-tabs .product__title a,
      .section-collection-tabs .vape-product-price span {
        color: #fff;
      }
      .section-product-slider .vape-product-media,
      .section-collection-tabs .vape-product-media {
        background: transparent;
        display: block;
        margin-bottom: 0;
        padding: 0;
      }
      .section-product-slider .vape-product-media::before,
      .section-collection-tabs .vape-product-media::before {
        display: none;
      }
      .section-product-slider .vape-product-media::after,
      .section-collection-tabs .vape-product-media::after {
        display: none;
      }
      .section-product-slider .vape-product-image-link,
      .section-collection-tabs .vape-product-image-link {
        display: block;
        inset: auto;
        position: static;
        width: 100%;
        z-index: auto;
      }
      .section-product-slider .respone_image,
      .section-collection-tabs .respone_image {
        padding-top: 100%;
        position: relative;
        width: 100%;
      }
      .section-product-slider .respone_image img,
      .section-collection-tabs .respone_image img {
        height: 100%;
        left: 0;
        object-fit: contain;
        position: absolute;
        top: 0;
        width: 100%;
      }
      .section-product-slider .vape-product-actions,
      .section-collection-tabs .vape-product-actions {
        bottom: auto;
        left: auto;
        right: 15px;
        top: 18px;
      }
      .section-product-slider .vape-product-card:hover,
      .section-collection-tabs .vape-product-card:hover {
        border-color: transparent;
        transform: none;
      }
      .section-product-slider .vape-product-card,
      .section-collection-tabs .vape-product-card {
        padding: 5px 5px 10px !important;
      }
      .section-product-slider .product__info,
      .section-collection-tabs .product__info {
        background: transparent;
        min-height: 0;
        padding: 18px 0 0;
        text-align: center;
      }
      .section-product-slider .product__title,
      .section-collection-tabs .product__title {
        margin: 0;
      }
      .section-product-slider .product__title a,
      .section-collection-tabs .product__title a {
        display: block;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
      }
      .section-product-slider .price-box,
      .section-collection-tabs .price-box {
        margin-top: 15px;
      }
      .section-product-slider .vape-review-placeholder,
      .section-collection-tabs .vape-review-placeholder {
        display: none;
        height: 0;
      }
      .section-product-slider .vape-product-price span,
      .section-product-slider .vape-product-price del,
      .section-collection-tabs .vape-product-price span,
      .section-collection-tabs .vape-product-price del {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
      }
      .section-product-slider .vape-product-price del,
      .section-collection-tabs .vape-product-price del {
        color: rgba(255, 255, 255, .45);
      }
      .section-product-slider .vape-product-rating,
      .section-product-slider .vape-product-swatch,
      .section-collection-tabs .vape-product-rating,
      .section-collection-tabs .vape-product-swatch {
        display: none !important;
      }
      .section-blog .vape-blog-card h3 {
        font-size: 20px;
        font-weight: 500;
        height: 60px;
        line-height: 30px;
        margin: 15px 0 0;
        overflow: hidden;
      }
      .section-blog .vape-blog-card h3 a {
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
      }
      .section-blog .vape-blog-card {
        text-align: left;
        transition: filter .36s ease, opacity .36s ease, transform .36s ease;
      }
      .section-blog .vape-row-track {
        overflow-y: hidden;
        padding-bottom: 42px;
      }
      .section-blog .vape-row-track > * {
        flex-basis: calc((100% - (var(--vape-pc-count, 4) - 1) * 30px) / var(--vape-pc-count, 4));
      }
      .section-blog .vape-blog-card h3 a:hover {
        color: #ff4da9;
      }
      .section-blog .vape-blog-card p,
      .section-featured-product .vape-featured-copy p {
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
      }
      .section-blog .vape-blog-card p {
        font-size: 14px;
        line-height: 21px;
        margin: 15px 0 0;
        min-height: 42px;
      }
      .section-blog .vape-blog-meta {
        font-size: 14px;
        margin-bottom: 0;
        margin-top: 25px;
      }
      .section-blog .vape-link {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        gap: 7px;
        line-height: 21px;
        margin-top: 20px;
      }
      .section-blog .vape-link::after {
        display: inline-block;
        transform: rotate(-45deg);
        transition: transform .3s;
      }
      .section-blog .vape-link:hover {
        color: #ff4da9;
      }
      .section-blog .vape-link:hover::after,
      .section-blog .vape-blog-card:hover .vape-link::after {
        transform: rotate(0);
      }
      .section-blog .vape-nav {
        --slider-arrow-color: #1c1c1c;
        --slider-arrow-bg: #fff;
        --slider-arrow-border: #fff;
        --slider-arrow-color-act: #fff;
        --slider-arrow-bg-act: #ff4da9;
        --slider-arrow-border-act: #ff4da9;
        height: 50px;
        width: 50px;
      }
      .section-blog .vape-nav-prev {
        left: -25px;
      }
      .section-blog .vape-nav-next {
        right: -25px;
      }
      .section-blog .vape-nav.is-disabled {
        opacity: 0;
      }
      .section-blog .vape-row-slider:hover .vape-nav.is-disabled,
      .section-blog .vape-row-slider:focus-within .vape-nav.is-disabled {
        opacity: .35;
      }
      .section-countdown.vape-section {
        background: transparent;
        padding: 0;
      }
      .section-countdown .vape-countdown {
        background: transparent;
        height: auto;
        overflow: visible;
        padding: 0;
      }
      .section-countdown .vape-countdown::before {
        display: none;
      }
      .section-countdown .ss-bg {
        --bg-gradient: linear-gradient(90deg, #17171a 0%, #262236 34%, #222b3c 62%, #17171a 100%);
        --bg-gradient-time: 15s;
        background: #17171a no-repeat center center;
        height: 58%;
        left: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 0;
      }
      .section-countdown .container-fluid {
        margin-left: 0;
        margin-right: 0;
        max-width: none !important;
        padding-left: 60px;
        padding-right: 60px;
        position: relative;
        width: 100%;
        z-index: 1;
      }
      .section-countdown .container-inner {
        margin: 0 auto;
        max-width: 1800px;
      }
      .section-countdown .vape-countdown-grid {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        min-height: 0;
      }
      .section-countdown .vape-countdown-copy {
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
      }
      .section-countdown .title_section {
        margin-bottom: 30px;
      }
      .section-countdown h2 {
        color: #fff;
        font-family: var(--vape-font-heading, Orbitron, Poppins, Arial, sans-serif);
        font-size: 40px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 60px;
        margin: 0;
      }
      .section-countdown p {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin: 15px 0 0;
        max-width: 570px;
      }
      .section-countdown .countdownfree {
        background: transparent;
        border-radius: 0;
        box-shadow: none !important;
        display: inline-flex;
        gap: 0;
        margin-top: 0;
        padding: 0;
      }
      .section-countdown .item-time {
        align-items: center;
        background: #fff;
        border-radius: 10px;
        color: #ff4da9;
        display: flex;
        flex-direction: column;
        height: 80px;
        justify-content: center;
        margin-right: 15px;
        min-width: 76px;
        padding: 0;
        position: relative;
      }
      .section-countdown .data-number {
        background: linear-gradient(180deg, #d253ff, #ff4da9);
        -webkit-background-clip: text;
        color: #ff4da9;
        display: block;
        font-size: 20px;
        font-weight: 600;
        line-height: 20px;
        -webkit-text-fill-color: transparent;
      }
      .section-countdown .name-time {
        color: #ff4da9;
        display: block;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        margin-top: 3px;
        text-transform: uppercase;
      }
      .section-countdown .mt-30 {
        margin-top: 30px;
      }
      .section-countdown .vape-btn {
        font-size: 14px;
        font-weight: 500;
        gap: 12px;
        min-height: 51px;
        padding: 0 20px;
      }
      .section-countdown .vape-btn-arrow::before {
        content: "->";
        font-style: normal;
      }
      .section-countdown .vape-countdown-media-wrap {
        padding-left: 15px;
        padding-right: 15px;
      }
      .section-countdown .vape-countdown-media {
        display: block;
        height: auto;
        overflow: visible;
      }
      .section-countdown .vape-countdown-media img {
        animation: vapeCountdownFloat 5.6s ease-in-out infinite;
        display: block;
        height: auto;
        max-height: none;
        object-fit: contain;
        transform-origin: center center;
        transition: transform 1.5s ease-out, filter .45s ease;
        width: 100%;
      }
      .section-countdown .vape-countdown-media:hover img {
        animation: none;
        filter: drop-shadow(0 24px 46px rgba(255,77,169,.14));
        transform: scale(1.035);
      }
      .section-featured-product .vape-featured-product-bg {
        padding: 30px;
      }
      .section-featured-product .vape-featured-media img {
        max-height: 390px;
      }
      .section-featured-product .vape-featured-product-bg {
        background: #17171a;
      }
      @keyframes vapeNovGradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
      }
      @media (min-width: 1200px) and (max-width: 1440px) {
        .section-countdown .ss-bg { height: 66%; }
      }
      @media (min-width: 992px) and (max-width: 1199px) {
        .section-countdown .ss-bg { height: 70%; }
      }
      @media (max-width: 991px) {
        .section-countdown .ss-bg { height: 100%; }
        .vape-reveal-ready .vape-animate {
          transition-delay: calc(min(var(--vape-order, 0), 4) * 45ms);
        }
        .section-gallery-image.vape-section-gallery .vape-row-slider {
          overflow: visible;
        }
        .section-gallery-image.vape-section-gallery {
          overflow: visible;
        }
        .section-gallery-image.vape-section-gallery .vape-row-track {
          align-items: start;
          display: grid;
          gap: 10px;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          overflow: visible;
          scroll-snap-type: none;
        }
        .section-gallery-image.vape-section-gallery .vape-row-track > * {
          flex-basis: auto;
          min-width: 0;
        }
        .section-gallery-image.vape-section-gallery .vape-image-slide-card,
        .section-gallery-image.vape-section-gallery .vape-gallery-card {
          aspect-ratio: 630 / 480;
        }
        .section-gallery-image.vape-section-gallery .vape-image-slide-card img,
        .section-gallery-image.vape-section-gallery .vape-gallery-card img {
          height: 100%;
          object-fit: cover;
          object-position: center center;
          width: 100%;
        }
        .section-gallery-image.vape-section-gallery .vape-image-slide-caption {
          bottom: 14px;
          left: 14px;
          right: 12px;
        }
        .section-gallery-image.vape-section-gallery .vape-image-slide-caption strong {
          font-size: 14px;
          line-height: 18px;
          margin-bottom: 4px;
        }
        .section-gallery-image.vape-section-gallery .vape-image-slide-caption span {
          font-size: 12px;
          line-height: 16px;
        }
        .section-countdown .vape-countdown {
          height: auto;
        }
        .section-countdown .vape-countdown-grid {
          display: grid;
          gap: 16px;
          min-height: 0;
          padding: 32px 0 24px;
        }
        .section-countdown .vape-countdown-copy {
          order: 1;
        }
        .section-countdown .vape-countdown-media-wrap {
          order: 2;
        }
        .section-countdown .vape-countdown-media img {
          margin: 0 auto;
          max-height: 380px;
          max-width: min(620px, 86vw);
          width: auto;
        }
        .section-countdown h2 { font-size: 22.88px; line-height: 34.32px; }
        .section-countdown p { font-size: 14px; line-height: 21px; }
        .section-collection-tabs .vape-tab-head {
          gap: 18px;
          justify-content: flex-start;
          margin-bottom: 34px;
          overflow-x: auto;
          padding: 0 2px 4px;
          scroll-padding-left: 2px;
          scrollbar-width: none;
        }
        .section-collection-tabs .vape-tab-head::-webkit-scrollbar {
          display: none;
        }
        .section-collection-tabs .vape-tab-head button {
          flex: 0 0 auto;
          font-size: 14px;
          line-height: 20px;
          white-space: nowrap;
        }
        .section-collection-tabs .vape-product-grid {
          display: flex;
          gap: 18px;
          overflow-x: auto;
          padding: 0 2px 8px;
          scroll-padding-left: 2px;
          scroll-snap-type: x mandatory;
          scrollbar-width: none;
        }
        .section-collection-tabs .vape-product-grid::-webkit-scrollbar {
          display: none;
        }
        .section-product-slider .vape-row-track > *,
        .section-collection-tabs .vape-product-grid > * {
          flex: 0 0 calc((100% - 18px) / 2);
          scroll-snap-align: start;
        }
        .section-collection-tabs .vape-tabs-section.is-tab-switching .vape-tab-panel.is-active .vape-product-card {
          animation: vapeProductMobileIn .42s cubic-bezier(.22, .61, .36, 1) both;
        }
        .section-product-slider .vape-product-card,
        .section-collection-tabs .vape-product-card {
          border-radius: 24px;
          overflow: hidden;
        }
        .section-product-slider .product__title a,
        .section-collection-tabs .product__title a {
          font-size: 15px;
          line-height: 22px;
        }
        .section-product-slider .vape-product-price span,
        .section-product-slider .vape-product-price del,
        .section-collection-tabs .vape-product-price span,
        .section-collection-tabs .vape-product-price del {
          font-size: 18px;
          line-height: 27px;
        }
        .section-img-group .vape-story {
          padding-top: 30px;
          padding-bottom: 30px;
        }
        .section-img-group .vape-inner.container-fluid {
          padding-left: 15px !important;
          padding-right: 15px !important;
        }
        .section-img-group .vape-story-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }
        .section-img-group .vape-story-video {
          aspect-ratio: 360 / 230;
        }
        .section-img-group .vape-story-feature {
          aspect-ratio: 360 / 260;
        }
        .section-img-group .vape-story-copy {
          left: 5%;
          max-width: 82%;
        }
        .section-img-group .vape-story-copy h2 {
          font-size: 22px;
          line-height: 1.5;
          margin-bottom: 10px;
        }
        .section-img-group .vape-story-copy p {
          font-size: 11px;
          line-height: 1.5;
          margin-bottom: 14px;
        }
        .section-img-group .vape-story-copy .vape-btn {
          font-size: 12px;
          min-height: 36px;
          padding: 0 18px;
        }
        .section-manufacture .vape-brand-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 30px 0;
        }
        .section-manufacture .vape-brand-card {
          min-height: 100px;
        }
        .section-manufacture .vape-brand-card img {
          max-height: 82px;
          max-width: 150px;
        }
        .section-image-split .vape-image-split-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 10px;
        }
        .section-image-split .vape-image-split-card {
          aspect-ratio: 175 / 230;
        }
        .section-image-split .vape-image-split-copy {
          padding: 12px;
          transform: none;
        }
        .section-image-split .vape-image-split-copy strong {
          font-size: 12px;
          line-height: 1.3;
          margin-bottom: 6px;
        }
        .section-image-split .vape-image-split-copy span {
          display: none;
        }
        .section-blog .vape-row-track > * {
          flex-basis: 100%;
        }
        .section-blog .vape-row-slider.is-row-ready .vape-blog-card {
          filter: saturate(.82);
          opacity: .52;
          transform: translateX(18px) scale(.96);
        }
        .section-blog .vape-row-slider.is-row-ready .vape-blog-card.is-row-active {
          filter: none;
          opacity: 1;
          transform: translateX(0) scale(1);
        }
        .section-blog .vape-row-slider.is-switching .vape-blog-card.is-row-active {
          animation: vapeBlogMobileIn .46s cubic-bezier(.22, .61, .36, 1) both;
        }
        .section-slideshow .vape-hero-media {
          aspect-ratio: auto;
          height: 240px;
        }
        .section-slideshow .vape-hero,
        .section-slideshow .vape-hero-stage,
        .section-slideshow .vape-hero-slide {
          height: 240px;
        }
        .section-slideshow .vape-hero-slide {
          overflow: hidden;
        }
        .section-slideshow .vape-hero-media img {
          height: 100%;
          object-fit: cover;
          object-position: center center;
        }
        .section-slideshow .vape-hero-product {
          max-width: min(78%, 330px);
          opacity: .42;
          right: -16%;
          top: 3%;
          width: 78%;
          z-index: 2;
        }
        .section-slideshow .vape-hero-caption {
          display: block;
          left: 22px !important;
          max-width: min(76%, 340px);
          right: auto !important;
          text-align: left !important;
          top: 48%;
          transform: translateY(-50%) !important;
          z-index: 4;
        }
        .section-slideshow .vape-hero-caption :is(h1, h2) {
          font-size: clamp(20px, 5.8vw, 30px);
          line-height: 1.1;
          margin-bottom: 8px;
        }
        .section-slideshow .vape-hero-caption p {
          font-size: clamp(11px, 3.2vw, 13px);
          line-height: 1.45;
          margin-bottom: 10px;
          max-width: 96%;
        }
        .section-slideshow .vape-btn {
          font-size: 11px;
          min-height: 34px;
          padding: 0 16px;
        }
        .section-featured-product .vape-featured-product-bg {
          min-height: 610px;
        }
      }
      @media (max-width: 575px) {
        .section-policy.vape-section {
          overflow: visible;
          padding-bottom: 0 !important;
          padding-top: 0 !important;
        }
        .section-policy .vape-policy {
          padding: 30px 0 !important;
        }
        .section-policy .vape-policy-grid {
          gap: 50px;
          overflow: visible;
        }
        .section-policy .vape-policy-card {
          gap: 22px;
          min-height: 100px;
          overflow: visible;
        }
        .section-policy .vape-policy-card img {
          box-shadow: 0 0 36px rgba(255, 77, 169, .4);
          flex: 0 0 100px;
          height: 100px;
          width: 100px;
        }
        .section-policy .vape-policy-card h3 {
          font-size: 17.6px;
          line-height: 26.4px;
        }
        .section-policy .vape-policy-card p {
          font-size: 14.08px;
          line-height: 21.12px;
          margin-top: 15px;
        }
        .section-countdown .container-fluid {
          padding-left: 15px !important;
          padding-right: 15px !important;
        }
        .section-countdown .container-inner {
          max-width: none;
          width: 100%;
        }
        .section-countdown .vape-countdown-grid {
          margin-left: -15px;
          margin-right: -15px;
          padding: 34px 15px 22px;
          width: auto;
        }
        .section-countdown .vape-countdown-copy {
          padding-left: 0;
          padding-right: 0;
          max-width: 100%;
          width: 100%;
        }
        .section-countdown .title_section {
          margin-bottom: 22px;
        }
        .section-countdown .vape-countdown-media-wrap {
          margin-top: 0;
          padding-left: 0 !important;
          padding-right: 0 !important;
          width: 100%;
        }
        .section-countdown .vape-countdown-media img {
          max-height: 285px;
          max-width: 84%;
          width: auto;
        }
        .section-countdown .countdown-content {
          width: 100%;
        }
        .section-countdown .countdownfree {
          display: inline-flex !important;
          gap: 0;
          grid-template-columns: none;
          max-width: 100%;
          width: auto;
        }
        .section-countdown .item-time {
          border-radius: 9px;
          flex: 0 0 52px;
          height: 60px;
          margin-right: 13px;
          min-width: 52px;
          width: 52px;
        }
        .section-countdown .item-time:last-child {
          margin-right: 0;
        }
        .section-slideshow .vape-hero-media,
        .section-slideshow .vape-hero,
        .section-slideshow .vape-hero-stage,
        .section-slideshow .vape-hero-slide {
          height: 240px;
        }
        .section-slideshow .vape-hero-caption {
          left: 20px !important;
          max-width: 76%;
          top: 50%;
        }
        .section-slideshow .vape-hero-caption :is(h1, h2) {
          font-size: clamp(20px, 5.8vw, 23px);
        }
        .section-slideshow .vape-hero-caption p {
          font-size: 11px;
          line-height: 1.45;
          margin-bottom: 10px;
          max-width: 96%;
        }
        .section-slideshow .vape-btn {
          font-size: 11px;
          min-height: 34px;
          padding: 0 16px;
        }
        .section-slideshow .vape-hero-product {
          max-width: 82%;
          opacity: .42;
          right: -24%;
          top: 5%;
          width: 82%;
        }
        .section-slideshow .vape-hero-controls {
          bottom: 16px;
        }
        .section-countdown .data-number {
          font-size: 17.6px;
          line-height: 17.6px;
          margin: 0 0 3px;
        }
        .section-countdown .name-time {
          font-size: 12.32px;
          line-height: 18.48px;
          margin-top: 0;
        }
        .section-product-slider .vape-row-track > *,
        .section-collection-tabs .vape-product-grid > * {
          flex: 0 0 calc((100% - 16px) / 2);
        }
        .section-product-slider .vape-row-track,
        .section-collection-tabs .vape-product-grid {
          gap: 16px;
        }
        .section-product-slider .vape-product-card,
        .section-collection-tabs .vape-product-card {
          padding: 4px 4px 8px !important;
        }
        .section-product-slider .product__info,
        .section-collection-tabs .product__info {
          padding-top: 12px;
        }
        .section-product-slider .vape-product-actions,
        .section-collection-tabs .vape-product-actions {
          display: none;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .vape-countdown::before,
        .vape-countdown-media img,
        .section-policy .vape-policy-card img,
        .section-img-group .vape-story-media img,
        .section-gallery-image .vape-gallery-card img,
        .section-gallery-image .vape-promo-card img,
        .section-image-split .vape-image-split-card img,
        .section-blog .vape-blog-media img {
          animation: none !important;
        }
      }
      @keyframes vapeBlogMobileIn {
        from { opacity: .62; transform: translateX(26px) scale(.96); }
        to { opacity: 1; transform: translateX(0) scale(1); }
      }
      @keyframes vapeProductMobileIn {
        from { opacity: .58; transform: translateY(16px) scale(.97); }
        to { opacity: 1; transform: translateY(0) scale(1); }
      }
      