/** Shopify CDN: Minification failed

Line 21:20 Unexpected "{"
Line 21:29 Expected ":"
Line 21:36 Unexpected "{"

**/
    /* =====================================================
     SERVICE BLOCK CSS
  ===================================================== */

  .kov-usp-strip,
  .kov-usp-strip * {
    box-sizing: border-box;
  }

  /* =====================================================
     REMOVE EXTRA SHOPIFY SECTION SPACING
  ===================================================== */

  #shopify-section-{{ section.id }} {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }


  /* =====================================================
     PREMIUM TRADE BENEFITS STRIP
  ===================================================== */

  .kov-usp-strip {
    position: relative;

    width: 100%;

    padding: 28px 20px 30px;

    background-color: #fafafa;

    border-bottom: 1px solid #E2D5BC;

    font-family: inherit;
  }


  /* STRONGER GOLD SIGNATURE */

  .kov-usp-strip::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 110px;
    height: 3px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-usp-strip__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     SMALL SECTION HEADER
  ===================================================== */

  .kov-usp-strip__header {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 20px;

    text-align: center;
  }


  .kov-usp-strip__header-line {
    display: block;

    width: 34px;
    height: 1px;

    background-color: #C7A35B;
  }


  .kov-usp-strip__eyebrow {
    margin: 0;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #7E6333;
  }


  /* =====================================================
     GRID
  ===================================================== */

  .kov-usp-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    background-color: #FFFFFF;

    border: 1px solid #E2D8C5;
  }


  /* =====================================================
     BENEFIT ITEM
  ===================================================== */

  .kov-usp-strip__item {
    position: relative;

    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);

    gap: 17px;

    align-items: center;

    min-height: 122px;

    padding: 24px 28px;

    border-left: 1px solid #E7DFD0;

    background-color: #FFFFFF;
  }


  .kov-usp-strip__item:first-child {
    border-left: 0;
  }


  /* GOLD TOP MARK */

  .kov-usp-strip__item::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 28px;

    width: 44px;
    height: 2px;

    background-color: #C7A35B;
  }


  /* =====================================================
     ICON
  ===================================================== */

  .kov-usp-strip__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border: 1px solid #E0D2B6;
    border-radius: 50%;

    background-color: #FBF8F1;

    color: #8A6D36;
  }


  .kov-usp-strip__icon svg {
    display: block;

    width: 31px;
    height: 31px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


  /* =====================================================
     CONTENT
  ===================================================== */

  .kov-usp-strip__content {
    min-width: 0;
  }


  .kov-usp-strip__number {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.11em;

    color: #A88A52;
  }


  .kov-usp-strip__title {
    display: block;

    margin: 0 0 5px;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: -0.01em;

    color: #111111;
  }


  .kov-usp-strip__text {
    display: block;

    max-width: 250px;

    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 400;

    color: #676767;
  }


  /* =====================================================
     LAPTOP / TABLET
  ===================================================== */

  @media (max-width: 1100px) {

    .kov-usp-strip {
      padding: 25px 18px 27px;
    }


    .kov-usp-strip__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-usp-strip__item {
      min-height: 112px;

      padding: 22px 24px;
    }


    .kov-usp-strip__item:nth-child(3) {
      border-left: 0;
    }


    .kov-usp-strip__item:nth-child(3),
    .kov-usp-strip__item:nth-child(4) {
      border-top: 1px solid #E7DFD0;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-usp-strip {
      padding: 23px 12px 20px;
    }


    .kov-usp-strip::before {
      width: 76px;
    }


    .kov-usp-strip__header {
      margin-bottom: 16px;
    }


    .kov-usp-strip__header-line {
      width: 24px;
    }


    .kov-usp-strip__eyebrow {
      font-size: 8.5px;
    }


    .kov-usp-strip__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-usp-strip__item {
      grid-template-columns: 1fr;

      gap: 10px;

      min-height: 166px;

      padding: 21px 10px 19px;

      text-align: center;
    }


    /* 2 X 2 */

    .kov-usp-strip__item:nth-child(odd) {
      border-left: 0;
    }


    .kov-usp-strip__item:nth-child(even) {
      border-left: 1px solid #E7DFD0;
    }


    .kov-usp-strip__item:nth-child(3),
    .kov-usp-strip__item:nth-child(4) {
      border-top: 1px solid #E7DFD0;
    }


    .kov-usp-strip__item::before {
      left: 50%;

      width: 34px;

      transform: translateX(-50%);
    }


    /* ICON */

    .kov-usp-strip__icon {
      width: 48px;
      height: 48px;

      margin: 0 auto;
    }


    .kov-usp-strip__icon svg {
      width: 27px;
      height: 27px;
    }


    /* TEXT */

    .kov-usp-strip__number {
      margin-bottom: 4px;

      font-size: 8px;
    }


    .kov-usp-strip__title {
      margin-bottom: 4px;

      font-size: 13px;
      line-height: 1.3;
    }


    .kov-usp-strip__text {
      max-width: 165px;

      margin: 0 auto;

      font-size: 10.5px;
      line-height: 1.45;
    }

  }


  /* =====================================================
     VERY SMALL MOBILE
  ===================================================== */

  @media (max-width: 370px) {

    .kov-usp-strip {
      padding-left: 9px;
      padding-right: 9px;
    }


    .kov-usp-strip__item {
      min-height: 158px;

      padding-left: 7px;
      padding-right: 7px;
    }


    .kov-usp-strip__title {
      font-size: 12px;
    }


    .kov-usp-strip__text {
      max-width: 145px;

      font-size: 10px;
    }

  }

____________________________________________________________________________________________________________________________________________________________________________________________________
  /* =====================================================
     DEALS SECTION
  ===================================================== */





  .kov-deals-section,
  .kov-deals-section * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-deals-section {
    width: 100%;
    padding: 80px 20px;

    background-color: #FFFFFF;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }

  .kov-deals-inner {
    width: 100%;
    max-width: 1770px;
    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-deals-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
  }


  /* SMALL GOLD DETAIL */
  .kov-deals-header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-deals-title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-deals-description {
    max-width: 820px;
    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     GRID
  ===================================================== */

  .kov-deals-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
  }


  /* =====================================================
     CARD
  ===================================================== */

  .kov-deal-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #ECECEC;

    color: #111111 !important;
    text-decoration: none !important;
  }


  .kov-deal-card:hover,
  .kov-deal-card:focus,
  .kov-deal-card:active,
  .kov-deal-card:visited {
    color: #111111 !important;
    text-decoration: none !important;
  }


  /* =====================================================
     IMAGE
  ===================================================== */

  .kov-deal-image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 500 / 300;

    overflow: hidden;

    background-color: #F3F3F3;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-deal-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* NO IMAGE ZOOM / NO ANIMATION */


  /* =====================================================
     CARD CONTENT
  ===================================================== */

  .kov-deal-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 18px 14px 20px;

    background-color: #FFFFFF;

    text-align: center;
  }


  .kov-deal-title {
    margin: 0 0 7px;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-deal-text {
    display: block;

    max-width: 340px;

    margin: 0 auto 14px;

    font-size: 12px;
    line-height: 1.6;

    color: #666666;
  }


  .kov-deal-link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #111111;
  }


  .kov-deal-card:hover .kov-deal-title,
  .kov-deal-card:hover .kov-deal-link,
  .kov-deal-card:focus .kov-deal-title,
  .kov-deal-card:focus .kov-deal-link {
    color: #111111 !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-deals-section {
      padding: 62px 18px;
    }


    .kov-deals-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-deals-section {
      padding: 50px 14px;
    }


    .kov-deals-header {
      margin-bottom: 30px;
    }


    .kov-deals-header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-deals-title {
      font-size: 26px;
    }


    .kov-deals-description {
      font-size: 14px;
      line-height: 1.7;

      text-align: center;
    }


    /* KEEP 2 COLUMNS */
    .kov-deals-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;
    }


    .kov-deal-content {
      padding: 14px 8px 16px;
    }


    .kov-deal-title {
      margin-bottom: 6px;

      font-size: 14px;
      line-height: 1.35;
    }


    .kov-deal-text {
      margin-bottom: 12px;

      font-size: 10.5px;
      line-height: 1.5;
    }


    .kov-deal-link {
      font-size: 9px;

      letter-spacing: 0.05em;
    }

  }


  /* =====================================================
     SMALL MOBILE - KEEP 2 COLUMNS
  ===================================================== */

  @media (max-width: 430px) {

    .kov-deals-section {
      padding-left: 12px;
      padding-right: 12px;
    }


    .kov-deals-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 9px;
    }


    .kov-deal-content {
      padding: 12px 6px 14px;
    }


    .kov-deal-title {
      font-size: 13px;
    }


    .kov-deal-text {
      margin-bottom: 11px;

      font-size: 10px;
      line-height: 1.45;
    }


    .kov-deal-link {
      font-size: 8.5px;

      letter-spacing: 0.04em;
    }

  }

____________________________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     HIGO SECTION
  ===================================================== */

  .kov-higo-zone,
  .kov-higo-zone * {
    box-sizing: border-box;
  }


  /* =====================================================
     COMPLETE HIGO AREA
  ===================================================== */

  .kov-higo-zone {
    position: relative;
    isolation: isolate;

    width: 100%;
    padding: 90px 20px;

    overflow: hidden;

    background:
      linear-gradient(
        135deg,
        #A8F3E4 0%,
        #B7E8FF 48%,
        #D8C8FF 100%
      );

    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }


  /* =====================================================
     HIGO REPEATING BACKGROUND PATTERN
  ===================================================== */

  .kov-higo-zone::before {
    content: "";

    position: absolute;

    top: -26%;
    right: -18%;
    bottom: -26%;
    left: -18%;

    z-index: 0;

    background-image:
      url("/cdn/shop/files/logo-higo-kov-wholesale.png?v=1788115349");

    background-repeat: space;
    background-size: 260px auto;
    background-position: center;

    opacity: 0.075;

    transform: rotate(-45deg);
    transform-origin: center;

    pointer-events: none;
    user-select: none;
  }


  .kov-higo-zone::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
      radial-gradient(
        circle at 12% 12%,
        rgba(255, 255, 255, 0.38) 0%,
        rgba(255, 255, 255, 0) 31%
      ),
      radial-gradient(
        circle at 88% 88%,
        rgba(255, 255, 255, 0.20) 0%,
        rgba(255, 255, 255, 0) 34%
      );

    pointer-events: none;
  }


  .kov-higo-zone__inner {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HIGO NIC SALTS
  ===================================================== */

  .kov-higo-salts {
    position: relative;

    padding: 42px;

    background-color: #FFFFFF;

    border: 1px solid #E5E5E5;
  }


  .kov-higo-salts::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 42px;

    width: 82px;
    height: 3px;

    background-color: #C7A35B;
  }


  .kov-higo-salts__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 52px;
  }


  /* =====================================================
     VIDEO
  ===================================================== */

  .kov-higo-salts__media-link {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background-color: #F3F3F3;

    border: 1px solid #E8E8E8;

    text-decoration: none;
  }


  .kov-higo-salts__video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* =====================================================
     SALTS CONTENT
  ===================================================== */

  .kov-higo-salts__eyebrow {
    display: inline-block;

    margin: 0 0 11px;
    padding-bottom: 5px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #777777;
  }


  .kov-higo-salts__title {
    max-width: 760px;

    margin: 0 0 18px;

    font-size: clamp(29px, 2.5vw, 40px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.025em;

    color: #111111;
  }


  .kov-higo-salts__text {
    max-width: 760px;

    margin: 0;

    font-size: 15px;
    line-height: 1.75;

    color: #505050;
  }


  .kov-higo-salts__text p {
    margin: 0 0 15px;
  }


  /* =====================================================
     PRODUCT FACTS
  ===================================================== */

  .kov-higo-salts__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 1px;

    margin-top: 27px;

    background-color: #E3E3E3;

    border-top: 2px solid #C7A35B;
  }


  .kov-higo-salts__fact {
    min-height: 76px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 13px 8px;

    background-color: #FAFAFA;

    text-align: center;
  }


  .kov-higo-salts__fact strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;
    line-height: 1.3;

    color: #111111;
  }


  .kov-higo-salts__fact span {
    display: block;

    font-size: 11px;
    line-height: 1.4;

    color: #696969;
  }


  /* =====================================================
     SALTS BUTTON
  ===================================================== */

  .kov-higo-salts__buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
  }


  .kov-higo-salts__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 22px;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-higo-salts__button--primary,
  .kov-higo-salts__button--primary:hover,
  .kov-higo-salts__button--primary:focus,
  .kov-higo-salts__button--primary:active,
  .kov-higo-salts__button--primary:visited {
    border: 1px solid #111111;

    background-color: #111111 !important;
    color: #FFFFFF !important;
  }


  /* =====================================================
     HIGO WHOLESALE AUTHORITY
  ===================================================== */

  .kov-higo-distributor {
    position: relative;

    margin-top: 20px;
    padding: 38px 40px;

    overflow: hidden;

    background-color: #111111;

    border: 1px solid #262626;
  }


  .kov-higo-distributor::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 40px;

    width: 92px;
    height: 3px;

    background-color: #C7A35B;
  }


  .kov-higo-distributor__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.36fr);

    gap: 42px;

    align-items: center;
  }


  .kov-higo-distributor__eyebrow {
    margin: 0 0 8px;

    font-size: 9.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #C7A35B;
  }


  .kov-higo-distributor__title {
    max-width: 820px;

    margin: 0 0 13px;

    font-size: clamp(27px, 2.25vw, 38px);
    line-height: 1.14;
    font-weight: 700;

    letter-spacing: -0.025em;

    color: #FFFFFF;
  }


  .kov-higo-distributor__text {
    max-width: 1020px;

    margin: 0;

    font-size: 13px;
    line-height: 1.72;

    color: #C2C2C2;
  }


  /* =====================================================
     HIGO AUTHORITY ACTIONS
  ===================================================== */

  .kov-higo-distributor__actions {
    display: grid;
    grid-template-columns: 1fr;

    gap: 9px;

    width: 100%;
  }


  .kov-higo-distributor__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;

    padding: 12px 18px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.055em;
    text-transform: uppercase;

    text-align: center;
    text-decoration: none !important;
  }


  .kov-higo-distributor__button--primary,
  .kov-higo-distributor__button--primary:hover,
  .kov-higo-distributor__button--primary:focus,
  .kov-higo-distributor__button--primary:active,
  .kov-higo-distributor__button--primary:visited {
    border: 1px solid #FFFFFF;

    background-color: #FFFFFF !important;
    color: #111111 !important;
  }


  .kov-higo-distributor__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 4px 6px;

    color: #D8D8D8 !important;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;

    text-decoration: none !important;
  }


  .kov-higo-distributor__whatsapp:hover,
  .kov-higo-distributor__whatsapp:focus,
  .kov-higo-distributor__whatsapp:active,
  .kov-higo-distributor__whatsapp:visited {
    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  .kov-higo-distributor__whatsapp-icon {
    display: inline-flex;

    margin-right: 7px;
  }


  .kov-higo-distributor__whatsapp-icon svg {
    width: 16px;
    height: 16px;

    stroke: #25D366;
  }


  /* =====================================================
     SHOP HIGO BY CATEGORY
     TEXT-ONLY VERSION
  ===================================================== */

  .kov-higo-distributor__categories {
    grid-column: 1 / -1;

    margin-top: 8px;
    padding-top: 30px;

    border-top: 1px solid #2C2C2C;
  }


  .kov-higo-distributor__categories-title {
    margin: 0 0 18px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #C7A35B;
  }


  .kov-higo-distributor__category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;
  }


  .kov-higo-distributor__category-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    min-height: 132px;

    padding: 24px 22px;

    border: 1px solid #303030;

    background-color: #181818;
    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  .kov-higo-distributor__category-card:hover,
  .kov-higo-distributor__category-card:focus,
  .kov-higo-distributor__category-card:active,
  .kov-higo-distributor__category-card:visited {
    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  .kov-higo-distributor__category-card:hover,
  .kov-higo-distributor__category-card:focus-visible {
    border-color: #C7A35B;
  }


  .kov-higo-distributor__category-card:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 3px;
  }


  .kov-higo-distributor__category-eyebrow {
    display: block;

    margin-bottom: 7px;

    font-size: 8.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: #C7A35B;
  }


  .kov-higo-distributor__category-title {
    display: block;

    margin: 0;

    font-size: clamp(17px, 1.2vw, 21px);
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -0.015em;

    color: #FFFFFF;
  }


  .kov-higo-distributor__category-text {
    display: block;

    max-width: 290px;

    margin-top: 8px;

    font-size: 10.5px;
    line-height: 1.55;

    color: #AFAFAF;
  }


  /* =====================================================
     FEATURED HIGO PRODUCT SHOWCASE
  ===================================================== */

  .kov-higo-stockist {
    position: relative;

    margin-top: 20px;
    padding: 42px 48px 28px;

    background-color: #FFFDF8;

    border: 1px solid #E5D8BE;
  }


  .kov-higo-stockist::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 48px;

    width: 96px;
    height: 3px;

    background-color: #C7A35B;
  }


  .kov-higo-stockist__note {
    max-width: 1000px;

    margin: 20px auto 0;

    text-align: center;

    font-size: 10.5px;
    line-height: 1.6;

    color: #777777;
  }


  /* =====================================================
     FEATURED PRODUCTS
  ===================================================== */

  .kov-higo-stockist__products {
    position: relative;

    margin-top: 0;
    padding-top: 0;
  }


  .kov-higo-stockist__products-header {
    max-width: 900px;

    margin: 0 auto 32px;

    text-align: center;
  }


  .kov-higo-stockist__products-header::before {
    content: "";

    display: block;

    width: 46px;
    height: 2px;

    margin: 0 auto 13px;

    background-color: #C7A35B;
  }


  .kov-higo-stockist__products-eyebrow {
    margin: 0 0 7px;

    font-size: 9.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #92723B;
  }


  .kov-higo-stockist__products-title {
    margin: 0 0 11px;

    font-size: clamp(25px, 2vw, 34px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-higo-stockist__products-description {
    max-width: 790px;

    margin: 0 auto;

    font-size: 13.5px;
    line-height: 1.72;

    color: #606060;
  }


  /* =====================================================
     PRODUCT GRID
  ===================================================== */

  .kov-higo-stockist__products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
  }


  .kov-higo-stockist__product-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #E7E0D4;

    color: #111111 !important;
    text-decoration: none !important;
  }


  .kov-higo-stockist__product-card:hover,
  .kov-higo-stockist__product-card:focus,
  .kov-higo-stockist__product-card:active,
  .kov-higo-stockist__product-card:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     PRODUCT IMAGE
  ===================================================== */

  .kov-higo-stockist__product-image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #F5F5F5;

    border-bottom: 1px solid #ECE8E0;
  }


  .kov-higo-stockist__product-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  .kov-higo-stockist__product-image-wrap::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  /* =====================================================
     PRODUCT CONTENT
  ===================================================== */

  .kov-higo-stockist__product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 17px 13px 19px;

    text-align: center;
  }


  .kov-higo-stockist__product-brand {
    display: block;

    margin-bottom: 5px;

    font-size: 8.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: #9A9A9A;
  }


  .kov-higo-stockist__product-title {
    margin: 0 0 7px;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-higo-stockist__product-text {
    display: block;

    max-width: 300px;

    margin: 0 auto 13px;

    font-size: 11.5px;
    line-height: 1.55;

    color: #686868;
  }


  .kov-higo-stockist__product-link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #111111;
  }


  /* =====================================================
     COMPLETE KIT RANGE CTA
  ===================================================== */

  .kov-higo-stockist__products-footer {
    position: relative;

    margin-top: 22px;
    padding: 19px 16px;

    background-color: rgba(255, 255, 255, 0.72);

    border: 1px solid #E7E0D4;

    text-align: center;
  }


  .kov-higo-stockist__products-footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 48px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-higo-stockist__products-footer-text {
    margin: 0 0 13px;

    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;

    color: #444444;
  }


  .kov-higo-stockist__products-button,
  .kov-higo-stockist__products-button:hover,
  .kov-higo-stockist__products-button:focus,
  .kov-higo-stockist__products-button:active,
  .kov-higo-stockist__products-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 12px 22px;

    border: 1px solid #111111;

    background-color: #111111 !important;
    color: #FFFFFF !important;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-higo-stockist__products-footer-related {
    margin: 12px 0 0;

    font-size: 10.5px;
    line-height: 1.55;

    color: #666666;
  }


  .kov-higo-stockist__products-footer-related a,
  .kov-higo-stockist__products-footer-related a:hover,
  .kov-higo-stockist__products-footer-related a:focus,
  .kov-higo-stockist__products-footer-related a:active,
  .kov-higo-stockist__products-footer-related a:visited {
    color: #111111 !important;

    font-weight: 700;

    text-decoration: underline;
    text-decoration-color: #C7A35B;
    text-underline-offset: 3px;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 1050px) {

    .kov-higo-zone {
      padding: 64px 18px;
    }


    .kov-higo-zone::before {
      top: -24%;
      right: -20%;
      bottom: -24%;
      left: -20%;

      background-size: 220px auto;

      opacity: 0.068;
    }


    .kov-higo-salts {
      padding: 34px 30px;
    }


    .kov-higo-salts__grid {
      gap: 38px;
    }


    .kov-higo-salts__facts {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-higo-distributor {
      padding: 34px 30px;
    }


    .kov-higo-distributor__inner {
      grid-template-columns: 1fr;

      gap: 24px;
    }


    .kov-higo-distributor__actions {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-higo-distributor__whatsapp {
      grid-column: 1 / -1;
    }


    .kov-higo-distributor__category-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-higo-distributor__category-card {
      min-height: 125px;

      padding: 22px 20px;
    }


    .kov-higo-stockist {
      padding: 38px 34px 26px;
    }


    .kov-higo-stockist__products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 16px;
    }

  }


  /* =====================================================
     TABLET ONLY ADJUSTMENTS
     750px - 1050px
  ===================================================== */

  @media (min-width: 750px) and (max-width: 1050px) {

    /* HIGO NIC SALTS: VIDEO ABOVE TEXT */

    .kov-higo-salts__grid {
      grid-template-columns: 1fr;

      gap: 30px;
    }


    .kov-higo-salts__media,
    .kov-higo-salts__content {
      width: 100%;
    }


    /* HIGO WHOLESALE: TWO ACTIONS ON ONE LINE */

    .kov-higo-distributor__actions {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 10px;
    }


    .kov-higo-distributor__button,
    .kov-higo-distributor__whatsapp {
      width: 100%;
      min-height: 46px;

      white-space: nowrap;
    }


    .kov-higo-distributor__whatsapp {
      grid-column: auto;

      padding: 12px 18px;

      border: 1px solid #3A3A3A;

      background-color: #181818;

      text-align: center;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-higo-zone {
      padding: 48px 12px;
    }


    .kov-higo-zone::before {
      top: -18%;
      right: -32%;
      bottom: -18%;
      left: -32%;

      background-repeat: repeat;
      background-size: 155px auto;
      background-position: 18px 12px;

      opacity: 0.058;
    }


    /* NIC SALTS */

    .kov-higo-salts {
      padding: 31px 13px 21px;
    }


    .kov-higo-salts::before {
      left: 50%;

      width: 68px;

      transform: translateX(-50%);
    }


    .kov-higo-salts__grid {
      grid-template-columns: 1fr;

      gap: 30px;
    }


    .kov-higo-salts__content,
    .kov-higo-salts__title,
    .kov-higo-salts__text {
      text-align: center;
    }


    .kov-higo-salts__eyebrow {
      display: table;

      margin-left: auto;
      margin-right: auto;
    }


    .kov-higo-salts__title {
      font-size: 27px;
    }


    .kov-higo-salts__text {
      max-width: 100%;

      font-size: 14px;
      line-height: 1.7;
    }


    .kov-higo-salts__facts {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      margin-top: 24px;
    }


    .kov-higo-salts__fact {
      min-height: 73px;
    }


    .kov-higo-salts__buttons {
      display: grid;
      grid-template-columns: 1fr;

      width: 100%;

      margin-top: 22px;
    }


    .kov-higo-salts__button {
      width: 100%;
    }


    /* WHOLESALE AUTHORITY */

    .kov-higo-distributor {
      margin-top: 16px;

      padding: 30px 16px 22px;
    }


    .kov-higo-distributor::before {
      left: 50%;

      width: 68px;

      transform: translateX(-50%);
    }


    .kov-higo-distributor__inner {
      grid-template-columns: 1fr;

      gap: 22px;

      text-align: center;
    }


    .kov-higo-distributor__title {
      font-size: 27px;
    }


    .kov-higo-distributor__text {
      max-width: 620px;

      margin-left: auto;
      margin-right: auto;

      font-size: 12px;
      line-height: 1.65;
    }


    .kov-higo-distributor__actions {
      grid-template-columns: 1fr;
    }


    .kov-higo-distributor__whatsapp {
      grid-column: auto;
    }


    /* TEXT-ONLY CATEGORY LINKS */

    .kov-higo-distributor__categories {
      margin-top: 2px;
      padding-top: 24px;

      text-align: left;
    }


    .kov-higo-distributor__categories-title {
      margin-bottom: 14px;

      text-align: center;
    }


    .kov-higo-distributor__category-grid {
      grid-template-columns: 1fr;

      gap: 9px;
    }


    .kov-higo-distributor__category-card {
      min-height: 108px;

      padding: 19px 18px;

      text-align: left;
    }


    .kov-higo-distributor__category-title {
      font-size: 17px;
    }


    .kov-higo-distributor__category-text {
      max-width: none;

      font-size: 10.5px;
      line-height: 1.5;
    }


    /* FEATURED PRODUCTS */

    .kov-higo-stockist {
      margin-top: 16px;

      padding: 31px 16px 22px;
    }


    .kov-higo-stockist::before {
      left: 50%;

      width: 72px;

      transform: translateX(-50%);
    }


    .kov-higo-stockist__products-header {
      margin-bottom: 24px;
    }


    .kov-higo-stockist__products-header::before {
      width: 40px;

      margin-bottom: 11px;
    }


    .kov-higo-stockist__products-title {
      font-size: 23px;
    }


    .kov-higo-stockist__products-description {
      font-size: 12.5px;
      line-height: 1.65;
    }


    .kov-higo-stockist__products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 10px;
    }


    .kov-higo-stockist__product-content {
      padding: 13px 7px 15px;
    }


    .kov-higo-stockist__product-brand {
      font-size: 8px;
    }


    .kov-higo-stockist__product-title {
      font-size: 12.5px;
    }


    .kov-higo-stockist__product-text {
      margin-bottom: 10px;

      font-size: 9.5px;
      line-height: 1.45;
    }


    .kov-higo-stockist__product-link {
      font-size: 8px;

      letter-spacing: 0.04em;
    }


    .kov-higo-stockist__products-footer {
      margin-top: 17px;
      padding: 17px 11px;
    }


    .kov-higo-stockist__products-footer-text {
      font-size: 11px;
    }


    .kov-higo-stockist__products-button {
      width: 100%;

      text-align: center;
    }


    .kov-higo-stockist__note {
      margin-top: 18px;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 390px) {

    .kov-higo-zone {
      padding-left: 10px;
      padding-right: 10px;
    }


    .kov-higo-zone::before {
      right: -38%;
      left: -38%;

      background-size: 138px auto;

      opacity: 0.052;
    }


    .kov-higo-salts {
      padding-left: 11px;
      padding-right: 11px;
    }


    .kov-higo-distributor {
      padding-left: 13px;
      padding-right: 13px;
    }


    .kov-higo-distributor__title {
      font-size: 25px;
    }


    .kov-higo-distributor__category-card {
      min-height: 104px;

      padding: 17px 15px;
    }


    .kov-higo-distributor__category-eyebrow {
      font-size: 8px;
    }


    .kov-higo-distributor__category-title {
      font-size: 16px;
    }


    .kov-higo-distributor__category-text {
      font-size: 10px;
    }


    .kov-higo-stockist {
      padding-left: 13px;
      padding-right: 13px;
    }


    .kov-higo-stockist__products-grid {
      gap: 8px;
    }


    .kov-higo-stockist__product-content {
      padding-left: 5px;
      padding-right: 5px;
    }


    .kov-higo-stockist__product-title {
      font-size: 12px;
    }


    .kov-higo-stockist__product-text {
      font-size: 9px;
    }


    .kov-higo-stockist__product-link {
      font-size: 7.5px;
    }

  }
____________________________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     VAPE CATEGORIES SECTION
  ===================================================== */


  .kov-wholesale-categories,
  .kov-wholesale-categories * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-wholesale-categories {
    width: 100%;

    padding: 80px 20px;

    background-color: #FFFFFF;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-wholesale-categories__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-wholesale-categories__header {
    max-width: 920px;

    margin: 0 auto 38px;

    text-align: center;
  }


  .kov-wholesale-categories__header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-wholesale-categories__title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-wholesale-categories__description {
    max-width: 850px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     CATEGORY GRID
  ===================================================== */

  .kov-wholesale-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
  }


  /* =====================================================
     CATEGORY CARD
  ===================================================== */

  .kov-wholesale-category {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #E8E8E8;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-wholesale-category:hover,
  .kov-wholesale-category:focus,
  .kov-wholesale-category:active,
  .kov-wholesale-category:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     IMAGE
     ORIGINAL SIZE: 720 x 350
  ===================================================== */

  .kov-wholesale-category__image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 720 / 350;

    overflow: hidden;

    background-color: #F3F3F3;

    border-bottom: 1px solid #EBEBEB;
  }


  .kov-wholesale-category__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* NO IMAGE ZOOM / NO ANIMATION */


  /* SUBTLE GOLD DETAIL */
  .kov-wholesale-category__image-wrap::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 44px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  /* =====================================================
     CONTENT
  ===================================================== */

  .kov-wholesale-category__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 17px 12px 19px;

    text-align: center;
  }


  .kov-wholesale-category__eyebrow {
    display: block;

    margin: 0 0 5px;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: #999999;
  }


  .kov-wholesale-category__title {
    margin: 0 0 7px;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-wholesale-category__text {
    max-width: 290px;

    margin: 0 auto 13px;

    font-size: 11.5px;
    line-height: 1.55;

    color: #666666;
  }


  .kov-wholesale-category__link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 9.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #111111;
  }


  /* =====================================================
     EXPLORE ALL
  ===================================================== */

  .kov-wholesale-categories__footer {
    position: relative;

    margin-top: 34px;
    padding: 22px 18px;

    background-color: #F2F2F2;

    border-top: 1px solid #E5E5E5;

    text-align: center;
  }


  .kov-wholesale-categories__footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 52px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-wholesale-categories__footer-text {
    margin: 0 0 14px;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;

    color: #333333;
  }


  .kov-wholesale-categories__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 27px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 10.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.065em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-wholesale-categories__button:hover,
  .kov-wholesale-categories__button:focus,
  .kov-wholesale-categories__button:active,
  .kov-wholesale-categories__button:visited {
    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-wholesale-categories {
      padding: 60px 18px;
    }


    .kov-wholesale-categories__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 16px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-wholesale-categories {
      padding: 48px 12px;
    }


    .kov-wholesale-categories__header {
      margin-bottom: 28px;
    }


    .kov-wholesale-categories__header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-wholesale-categories__title {
      font-size: 26px;
    }


    .kov-wholesale-categories__description {
      font-size: 14px;
      line-height: 1.7;
    }


    /* KEEP TWO COLUMNS */
    .kov-wholesale-categories__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 10px;
    }


    /* KEEP ORIGINAL IMAGE PROPORTION */
    .kov-wholesale-category__image-wrap {
      aspect-ratio: 720 / 350;
    }


    .kov-wholesale-category__content {
      padding: 13px 7px 15px;
    }


    .kov-wholesale-category__eyebrow {
      font-size: 8px;
    }


    .kov-wholesale-category__title {
      margin-bottom: 5px;

      font-size: 13px;
      line-height: 1.35;
    }


    .kov-wholesale-category__text {
      margin-bottom: 10px;

      font-size: 9.5px;
      line-height: 1.45;
    }


    .kov-wholesale-category__link {
      font-size: 8px;

      letter-spacing: 0.04em;
    }


    .kov-wholesale-categories__footer {
      margin-top: 28px;

      padding: 19px 12px;
    }


    .kov-wholesale-categories__footer-text {
      font-size: 12px;
    }


    .kov-wholesale-categories__button {
      width: 100%;

      text-align: center;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 390px) {

    .kov-wholesale-categories {
      padding-left: 10px;
      padding-right: 10px;
    }


    .kov-wholesale-categories__grid {
      gap: 8px;
    }


    .kov-wholesale-category__content {
      padding-left: 5px;
      padding-right: 5px;
    }


    .kov-wholesale-category__title {
      font-size: 12px;
    }


    .kov-wholesale-category__text {
      font-size: 9px;
    }

  }

__________________________________________________________________________________________________________________________________________________________________________________


  /* =====================================================
     BEST SELLING PREFILLED KITS SECTION
  ===================================================== */


    .kov-prefilled-bestsellers,
  .kov-prefilled-bestsellers * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-prefilled-bestsellers {
    width: 100%;
    padding: 80px 20px;

    background-color: #FAFAFA;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-prefilled-bestsellers__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-prefilled-bestsellers__header {
    max-width: 930px;

    margin: 0 auto 40px;

    text-align: center;
  }


  .kov-prefilled-bestsellers__header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-prefilled-bestsellers__title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-prefilled-bestsellers__description {
    max-width: 860px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     PRODUCT GRID
  ===================================================== */

  .kov-prefilled-bestsellers__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
  }


  /* =====================================================
     PRODUCT CARD
  ===================================================== */

  .kov-prefilled-bestseller {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #EAEAEA;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-prefilled-bestseller:hover,
  .kov-prefilled-bestseller:focus,
  .kov-prefilled-bestseller:active,
  .kov-prefilled-bestseller:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     IMAGE
  ===================================================== */

  .kov-prefilled-bestseller__image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #F3F3F3;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-prefilled-bestseller__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* NO IMAGE ZOOM / ANIMATION */


  /* =====================================================
     BEST SELLER BADGE
  ===================================================== */

  .kov-prefilled-bestseller__badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 6px 9px;

    background-color: #C7A35B;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #111111;
  }


  /* SMALL IMAGE ACCENT */

  .kov-prefilled-bestseller__image-wrap::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  /* =====================================================
     PRODUCT CONTENT
  ===================================================== */

  .kov-prefilled-bestseller__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 18px 14px 20px;

    text-align: center;
  }


  .kov-prefilled-bestseller__brand {
    display: block;

    margin: 0 0 5px;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #999999;
  }


  .kov-prefilled-bestseller__title {
    margin: 0 0 8px;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-prefilled-bestseller__text {
    display: block;

    max-width: 330px;

    margin: 0 auto 14px;

    font-size: 12px;
    line-height: 1.6;

    color: #666666;
  }


  .kov-prefilled-bestseller__link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.065em;
    text-transform: uppercase;

    color: #111111;
  }


  /* =====================================================
     PREFILLED PODS & REFILLS STRIP
     FULL BLOCK CLICKABLE
  ===================================================== */

  .kov-prefilled-bestsellers__refills-strip {
    position: relative;

    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;

    gap: 20px;

    align-items: center;

    margin-top: 32px;
    padding: 24px 26px;

    background-color: #F3F3F3;

    border: 1px solid #E4D9C1;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-prefilled-bestsellers__refills-strip:hover,
  .kov-prefilled-bestsellers__refills-strip:focus,
  .kov-prefilled-bestsellers__refills-strip:active,
  .kov-prefilled-bestsellers__refills-strip:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-prefilled-bestsellers__refills-strip::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 26px;

    width: 52px;
    height: 2px;

    background-color: #C7A35B;
  }


  /* ICON */
  .kov-prefilled-bestsellers__refills-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border: 1px solid #DECFAF;
    border-radius: 50%;

    background-color: #FFFFFF;

    color: #8A6D36;
  }


  .kov-prefilled-bestsellers__refills-icon svg {
    display: block;

    width: 30px;
    height: 30px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


  .kov-prefilled-bestsellers__refills-content {
    min-width: 0;
  }


  .kov-prefilled-bestsellers__refills-eyebrow {
    display: block;

    margin: 0 0 5px;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #8A6D3B;
  }


  .kov-prefilled-bestsellers__refills-title {
    display: block;

    margin: 0 0 6px;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;

    letter-spacing: -0.01em;

    color: #111111;
  }


  .kov-prefilled-bestsellers__refills-text {
    display: block;

    max-width: 900px;

    margin: 0;

    font-size: 12.5px;
    line-height: 1.65;

    color: #606060;
  }


  /* VISUAL CTA - WHOLE BLOCK IS THE LINK */
  .kov-prefilled-bestsellers__refills-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 12px 21px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.055em;
    text-transform: uppercase;

    white-space: nowrap;
  }


  .kov-prefilled-bestsellers__refills-arrow {
    margin-left: 8px;

    font-size: 14px;
    line-height: 1;

    color: #C7A35B;
  }


  /* =====================================================
     COLLECTION FOOTER
  ===================================================== */

  .kov-prefilled-bestsellers__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #FFFFFF;

    border: 1px solid #E7E7E7;

    text-align: center;
  }


  .kov-prefilled-bestsellers__footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-prefilled-bestsellers__footer-text {
    margin: 0 0 15px;

    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;

    color: #333333;
  }


  .kov-prefilled-bestsellers__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-prefilled-bestsellers__button:hover,
  .kov-prefilled-bestsellers__button:focus,
  .kov-prefilled-bestsellers__button:active,
  .kov-prefilled-bestsellers__button:visited {
    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-prefilled-bestsellers {
      padding: 62px 18px;
    }


    .kov-prefilled-bestsellers__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-prefilled-bestsellers {
      padding: 50px 14px;
    }


    .kov-prefilled-bestsellers__header {
      margin-bottom: 30px;
    }


    .kov-prefilled-bestsellers__header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-prefilled-bestsellers__title {
      font-size: 26px;
    }


    .kov-prefilled-bestsellers__description {
      font-size: 14px;
      line-height: 1.7;
    }


    /* KEEP 2 PRODUCTS PER ROW */

    .kov-prefilled-bestsellers__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;
    }


    .kov-prefilled-bestseller__badge {
      top: 8px;
      left: 8px;

      padding: 5px 7px;

      font-size: 8px;
    }


    .kov-prefilled-bestseller__content {
      padding: 14px 8px 16px;
    }


    .kov-prefilled-bestseller__brand {
      font-size: 8.5px;
    }


    .kov-prefilled-bestseller__title {
      margin-bottom: 7px;

      font-size: 13px;
      line-height: 1.4;
    }


    .kov-prefilled-bestseller__text {
      margin-bottom: 12px;

      font-size: 10.5px;
      line-height: 1.5;
    }


    .kov-prefilled-bestseller__link {
      font-size: 8.5px;

      letter-spacing: 0.045em;
    }


    .kov-prefilled-bestsellers__refills-strip {
      grid-template-columns: 1fr;

      gap: 12px;

      margin-top: 26px;
      padding: 22px 14px 18px;

      text-align: center;
    }


    .kov-prefilled-bestsellers__refills-strip::before {
      left: 50%;

      width: 42px;

      transform: translateX(-50%);
    }


    .kov-prefilled-bestsellers__refills-icon {
      width: 48px;
      height: 48px;

      margin: 0 auto;
    }


    .kov-prefilled-bestsellers__refills-icon svg {
      width: 27px;
      height: 27px;
    }


    .kov-prefilled-bestsellers__refills-title {
      font-size: 16px;
    }


    .kov-prefilled-bestsellers__refills-text {
      max-width: 620px;

      margin-left: auto;
      margin-right: auto;

      font-size: 11.5px;
      line-height: 1.6;
    }


    .kov-prefilled-bestsellers__refills-action {
      width: 100%;
    }


    .kov-prefilled-bestsellers__footer {
      margin-top: 32px;

      padding: 20px 13px;
    }


    .kov-prefilled-bestsellers__footer-text {
      font-size: 12px;
    }


    .kov-prefilled-bestsellers__button {
      width: 100%;

      text-align: center;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 430px) {

    .kov-prefilled-bestsellers {
      padding-left: 12px;
      padding-right: 12px;
    }


    .kov-prefilled-bestsellers__grid {
      gap: 9px;
    }


    .kov-prefilled-bestseller__content {
      padding: 12px 6px 14px;
    }


    .kov-prefilled-bestseller__title {
      font-size: 12.5px;
    }


    .kov-prefilled-bestseller__text {
      font-size: 10px;
      line-height: 1.45;
    }


    .kov-prefilled-bestseller__link {
      font-size: 8px;

      letter-spacing: 0.035em;
    }

  }


  __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     NEW VAPE ARRIVALS SECTION
  ===================================================== */




    .kov-new-arrivals,
  .kov-new-arrivals * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-new-arrivals {
    width: 100%;

    padding: 80px 20px;

    background-color: #FFFFFF;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-new-arrivals__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-new-arrivals__header {
    max-width: 930px;

    margin: 0 auto 40px;

    text-align: center;
  }


  /* SMALL GOLD DETAIL */
  .kov-new-arrivals__header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-new-arrivals__title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-new-arrivals__description {
    max-width: 880px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     PRODUCT GRID
  ===================================================== */

  .kov-new-arrivals__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
  }


  /* =====================================================
     PRODUCT CARD
  ===================================================== */

  .kov-new-arrival-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #ECECEC;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-new-arrival-card:hover,
  .kov-new-arrival-card:focus,
  .kov-new-arrival-card:active,
  .kov-new-arrival-card:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     PRODUCT IMAGE
  ===================================================== */

  .kov-new-arrival-card__image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #F5F5F5;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-new-arrival-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* NO ZOOM / NO IMAGE ANIMATION */


  /* =====================================================
     NEW ARRIVAL BADGE
  ===================================================== */

.kov-new-arrival-card__badge {
  position: absolute;

  top: 12px;
  left: 12px;

  z-index: 2;

  padding: 6px 9px;

  background-color: #1F7A4D;

  font-size: 9px;
  line-height: 1;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #FFFFFF;
}


  /* SMALL GOLD IMAGE DETAIL */
  .kov-new-arrival-card__image-wrap::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  /* =====================================================
     PRODUCT CONTENT
  ===================================================== */

  .kov-new-arrival-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 18px 14px 20px;

    text-align: center;
  }


  .kov-new-arrival-card__brand {
    display: block;

    margin: 0 0 5px;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #999999;
  }


  .kov-new-arrival-card__title {
    margin: 0 0 8px;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-new-arrival-card__text {
    display: block;

    max-width: 330px;

    margin: 0 auto 14px;

    font-size: 12px;
    line-height: 1.6;

    color: #666666;
  }


  .kov-new-arrival-card__link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.065em;
    text-transform: uppercase;

    color: #111111;
  }


  /* =====================================================
     COLLECTION FOOTER
  ===================================================== */

  .kov-new-arrivals__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #F3F3F3;

    border-top: 1px solid #E7E7E7;

    text-align: center;
  }


  .kov-new-arrivals__footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-new-arrivals__footer-text {
    margin: 0 0 15px;

    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;

    color: #333333;
  }


  .kov-new-arrivals__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-new-arrivals__button:hover,
  .kov-new-arrivals__button:focus,
  .kov-new-arrivals__button:active,
  .kov-new-arrivals__button:visited {
    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-new-arrivals {
      padding: 62px 18px;
    }


    .kov-new-arrivals__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-new-arrivals {
      padding: 50px 14px;
    }


    .kov-new-arrivals__header {
      margin-bottom: 30px;
    }


    .kov-new-arrivals__header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-new-arrivals__title {
      font-size: 26px;
    }


    .kov-new-arrivals__description {
      font-size: 14px;
      line-height: 1.7;
    }


    /* KEEP TWO PRODUCTS PER ROW */
    .kov-new-arrivals__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;
    }


    .kov-new-arrival-card__badge {
      top: 8px;
      left: 8px;

      padding: 5px 7px;

      font-size: 8px;
    }


    .kov-new-arrival-card__content {
      padding: 14px 8px 16px;
    }


    .kov-new-arrival-card__brand {
      font-size: 8.5px;
    }


    .kov-new-arrival-card__title {
      margin-bottom: 7px;

      font-size: 13px;
      line-height: 1.4;
    }


    .kov-new-arrival-card__text {
      margin-bottom: 12px;

      font-size: 10.5px;
      line-height: 1.5;
    }


    .kov-new-arrival-card__link {
      font-size: 8.5px;

      letter-spacing: 0.045em;
    }


    .kov-new-arrivals__footer {
      margin-top: 32px;

      padding: 20px 13px;
    }


    .kov-new-arrivals__footer-text {
      font-size: 12px;
    }


    .kov-new-arrivals__button {
      width: 100%;

      text-align: center;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 430px) {

    .kov-new-arrivals {
      padding-left: 12px;
      padding-right: 12px;
    }


    .kov-new-arrivals__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 9px;
    }


    .kov-new-arrival-card__content {
      padding: 12px 6px 14px;
    }


    .kov-new-arrival-card__title {
      font-size: 12.5px;
    }


    .kov-new-arrival-card__text {
      font-size: 10px;
      line-height: 1.45;
    }


    .kov-new-arrival-card__link {
      font-size: 8px;
    }

  }


   __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     Explore Our Wholesale E-Liquid Categories SECTION
  ===================================================== */


     .kov-eliquid-categories,
  .kov-eliquid-categories * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-eliquid-categories {
    width: 100%;
    padding: 80px 20px;

    background-color: #FAFAFA;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-eliquid-categories__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-eliquid-categories__header {
    max-width: 950px;

    margin: 0 auto 40px;

    text-align: center;
  }


  /* SMALL GOLD DETAIL */

  .kov-eliquid-categories__header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-eliquid-categories__title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-eliquid-categories__description {
    max-width: 900px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     GRID
  ===================================================== */

  .kov-eliquid-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
  }


  /* =====================================================
     CARD
  ===================================================== */

  .kov-eliquid-card {
    display: block;

    width: 100%;

    background-color: #FFFFFF;

    border: 1px solid #ECECEC;

    color: #111111 !important;
    text-decoration: none !important;
  }


  .kov-eliquid-card:hover,
  .kov-eliquid-card:focus,
  .kov-eliquid-card:active,
  .kov-eliquid-card:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     IMAGE
  ===================================================== */

  .kov-eliquid-card__image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #F3F3F3;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-eliquid-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }


  /* NO IMAGE ZOOM / NO ANIMATION */

  .kov-eliquid-card,
  .kov-eliquid-card *,
  .kov-eliquid-card::before,
  .kov-eliquid-card::after,
  .kov-eliquid-card *::before,
  .kov-eliquid-card *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;

    box-shadow: none !important;
    filter: none !important;
  }


  /* =====================================================
     CARD CONTENT
  ===================================================== */

  .kov-eliquid-card__content {
    padding: 21px 16px 23px;

    text-align: center;
  }


  .kov-eliquid-card__title {
    margin: 0 0 9px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    color: #111111;
  }


  .kov-eliquid-card__text {
    display: block;

    max-width: 470px;

    margin: 0 auto 14px;

    font-size: 13px;
    line-height: 1.65;

    color: #606060;
  }


  .kov-eliquid-card__link {
    display: inline-block;

    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #111111;
  }


  .kov-eliquid-card:hover .kov-eliquid-card__title,
  .kov-eliquid-card:hover .kov-eliquid-card__link,
  .kov-eliquid-card:focus .kov-eliquid-card__title,
  .kov-eliquid-card:focus .kov-eliquid-card__link {
    color: #111111 !important;
  }


  /* =====================================================
     ALL E-LIQUIDS FOOTER
  ===================================================== */

  .kov-eliquid-categories__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #F3F3F3;

    border-top: 1px solid #E7E7E7;

    text-align: center;
  }


  /* SMALL GOLD DETAIL */

  .kov-eliquid-categories__footer::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-eliquid-categories__footer-text {
    margin: 0 0 15px;

    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;

    color: #333333;
  }


  /* =====================================================
     ALL E-LIQUIDS BUTTON
  ===================================================== */

  .kov-eliquid-categories__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-eliquid-categories__all:hover,
  .kov-eliquid-categories__all:focus,
  .kov-eliquid-categories__all:active,
  .kov-eliquid-categories__all:visited {
    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-eliquid-categories {
      padding: 62px 18px;
    }


    .kov-eliquid-categories__grid {
      gap: 16px;
    }


    .kov-eliquid-card__title {
      font-size: 16px;
    }


    .kov-eliquid-card__text {
      font-size: 12px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-eliquid-categories {
      padding: 50px 14px;
    }


    .kov-eliquid-categories__header {
      margin-bottom: 30px;
    }


    .kov-eliquid-categories__header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-eliquid-categories__title {
      font-size: 26px;
    }


    .kov-eliquid-categories__description {
      font-size: 14px;
      line-height: 1.7;

      text-align: center;
    }


    .kov-eliquid-categories__grid {
      grid-template-columns: 1fr;

      gap: 30px;
    }


    .kov-eliquid-card__content {
      padding: 17px 12px 20px;

      text-align: center;
    }


    .kov-eliquid-card__title {
      font-size: 18px;
    }


    .kov-eliquid-card__text {
      max-width: 520px;

      font-size: 13px;
      line-height: 1.6;
    }


    .kov-eliquid-card__link {
      font-size: 10px;
    }


    .kov-eliquid-categories__footer {
      margin-top: 32px;

      padding: 20px 13px;
    }


    .kov-eliquid-categories__footer-text {
      font-size: 12px;
    }


    .kov-eliquid-categories__all {
      width: 100%;

      text-align: center;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 430px) {

    .kov-eliquid-categories {
      padding-left: 12px;
      padding-right: 12px;
    }

  }
 __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     WHOLESALE NIC SALTS SECTION
  ===================================================== */





  .kov-nicsalts-feature,
  .kov-nicsalts-feature * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-nicsalts-feature {
    width: 100%;

    padding: 80px 20px;

    background-color: #FFFFFF;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-nicsalts-feature__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  .kov-nicsalts-feature__shell {
    width: 100%;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-nicsalts-feature__header {
    max-width: 930px;

    margin: 0 auto 40px;

    text-align: center;
  }


  .kov-nicsalts-feature__header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-nicsalts-feature__eyebrow {
    margin: 0 0 9px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #777777;
  }


  .kov-nicsalts-feature__title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-nicsalts-feature__description {
    max-width: 850px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     GRID
  ===================================================== */

  .kov-nicsalts-feature__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
  }


  /* =====================================================
     PRODUCT CARD
  ===================================================== */

  .kov-nicsalt-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #ECECEC;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-nicsalt-card:hover,
  .kov-nicsalt-card:focus,
  .kov-nicsalt-card:active,
  .kov-nicsalt-card:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     IMAGE
  ===================================================== */

  .kov-nicsalt-card__image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #F3F3F3;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-nicsalt-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* NO IMAGE ZOOM / NO ANIMATION */


  /* SMALL GOLD DETAIL */
  .kov-nicsalt-card__image-wrap::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  /* =====================================================
     CARD CONTENT
  ===================================================== */

  .kov-nicsalt-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 19px 14px 21px;

    text-align: center;
  }


  .kov-nicsalt-card__brand {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: #999999;
  }


  .kov-nicsalt-card__title {
    margin: 0 0 8px;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-nicsalt-card__text {
    display: block;

    max-width: 350px;

    margin: 0 auto 13px;

    font-size: 12px;
    line-height: 1.6;

    color: #666666;
  }


  .kov-nicsalt-card__link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #111111;
  }


  .kov-nicsalt-card:hover .kov-nicsalt-card__title,
  .kov-nicsalt-card:hover .kov-nicsalt-card__link,
  .kov-nicsalt-card:focus .kov-nicsalt-card__title,
  .kov-nicsalt-card:focus .kov-nicsalt-card__link {
    color: #111111 !important;
  }


  /* =====================================================
     FULL COLLECTION CTA
     MATCHES OTHER HOMEPAGE SECTIONS
  ===================================================== */

  .kov-nicsalts-feature__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #F3F3F3;

    border-top: 1px solid #E7E7E7;

    text-align: center;
  }


  .kov-nicsalts-feature__footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-nicsalts-feature__footer-text {
    margin: 0 0 15px;

    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;

    color: #333333;
  }


  .kov-nicsalts-feature__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-nicsalts-feature__button:hover,
  .kov-nicsalts-feature__button:focus,
  .kov-nicsalts-feature__button:active,
  .kov-nicsalts-feature__button:visited {
    border-color: #111111;

    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-nicsalts-feature {
      padding: 62px 18px;
    }


    .kov-nicsalts-feature__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-nicsalts-feature {
      padding: 50px 14px;
    }


    .kov-nicsalts-feature__header {
      margin-bottom: 30px;
    }


    .kov-nicsalts-feature__header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-nicsalts-feature__eyebrow,
    .kov-nicsalts-feature__title,
    .kov-nicsalts-feature__description {
      text-align: center;
    }


    .kov-nicsalts-feature__title {
      font-size: 26px;
    }


    .kov-nicsalts-feature__description {
      font-size: 14px;
      line-height: 1.7;
    }


    /* KEEP 2 COLUMNS */
    .kov-nicsalts-feature__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;
    }


    .kov-nicsalt-card__content {
      padding: 15px 9px 17px;
    }


    .kov-nicsalt-card__brand {
      font-size: 9px;
    }


    .kov-nicsalt-card__title {
      font-size: 14px;
      line-height: 1.35;
    }


    .kov-nicsalt-card__text {
      margin-bottom: 12px;

      font-size: 11px;
      line-height: 1.55;
    }


    .kov-nicsalt-card__link {
      font-size: 9px;
    }


    /* FOOTER CTA */
    .kov-nicsalts-feature__footer {
      margin-top: 32px;

      padding: 20px 13px;
    }


    .kov-nicsalts-feature__footer-text {
      font-size: 12px;
    }


    .kov-nicsalts-feature__button {
      width: 100%;

      text-align: center;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 430px) {

    .kov-nicsalts-feature {
      padding-left: 12px;
      padding-right: 12px;
    }


    .kov-nicsalts-feature__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 9px;
    }


    .kov-nicsalt-card__content {
      padding: 13px 6px 15px;
    }


    .kov-nicsalt-card__brand {
      margin-bottom: 4px;

      font-size: 9px;
    }


    .kov-nicsalt-card__title {
      font-size: 13px;
      line-height: 1.35;
    }


    .kov-nicsalt-card__text {
      font-size: 10.5px;
      line-height: 1.5;
    }


    .kov-nicsalt-card__link {
      font-size: 8.5px;

      letter-spacing: 0.04em;
    }

  }



  __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     LATEST POD KITS BANNERS SECTION
  ===================================================== */


  .kov-latest-pod-kits,
  .kov-latest-pod-kits * {
    box-sizing: border-box;
  }

  .kov-latest-pod-kits {
    width: 100%;
    padding: 50px 20px;
    background-color: #FAFAFA;
  }

  .kov-latest-pod-kits__inner {
    width: 100%;
    max-width: 1770px;
    margin: 0 auto;
  }

  /* =========================
     HEADER
  ========================= */

  .kov-latest-pod-kits__header {
    max-width: 920px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .kov-latest-pod-kits__header::before {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 auto 15px;
    background-color: #C7A35B;
  }

  .kov-latest-pod-kits__title {
    margin: 0 0 14px;
    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
  }

  .kov-latest-pod-kits__description {
    max-width: 860px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: #555555;
  }

  /* =========================
     GRID
     DESKTOP: 3 PER ROW
  ========================= */

  .kov-latest-pod-kits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  /* =========================
     CARD
  ========================= */

  .kov-latest-pod-kits__card {
    display: block;
    width: 100%;
    min-width: 0;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
    color: #111111 !important;
    text-decoration: none !important;
    overflow: hidden;
  }

  .kov-latest-pod-kits__card:hover,
  .kov-latest-pod-kits__card:focus,
  .kov-latest-pod-kits__card:active,
  .kov-latest-pod-kits__card:visited {
    color: #111111 !important;
    text-decoration: none !important;
  }

  /* =========================
     IMAGE
  ========================= */

  .kov-latest-pod-kits__image-wrap {
    width: 100%;
    aspect-ratio: 570 / 300;
    overflow: hidden;
    background-color: #F4F4F4;
    border-bottom: 1px solid #EEEEEE;
  }

  .kov-latest-pod-kits__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* =========================
     CARD FOOTER
     TITLE LEFT / ARROW RIGHT
  ========================= */

  .kov-latest-pod-kits__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 16px 16px 17px;

    text-align: left;
  }

  .kov-latest-pod-kits__brand {
    display: block;
    min-width: 0;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }

  .kov-latest-pod-kits__arrow {
    flex: 0 0 auto;

    font-size: 19px;
    line-height: 1;
    font-weight: 700;

    color: #C7A35B;
  }

  /* =========================
     FOOTER STRIPE
  ========================= */

  .kov-latest-pod-kits__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #FFFFFF;

    border-top: 1px solid #E7E7E7;
  }

  .kov-latest-pod-kits__footer::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }

  .kov-latest-pod-kits__footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
  }

  .kov-latest-pod-kits__footer-text {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;

    color: #333333;
  }

  .kov-latest-pod-kits__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
    white-space: nowrap;
  }

  .kov-latest-pod-kits__button:hover,
  .kov-latest-pod-kits__button:focus,
  .kov-latest-pod-kits__button:active,
  .kov-latest-pod-kits__button:visited {
    background-color: #111111 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
  }

  /* =========================
     TABLET
     1 FULL WIDTH + 2 HALF WIDTH
  ========================= */

  @media (min-width: 750px) and (max-width: 989px) {

    .kov-latest-pod-kits {
      padding: 60px 18px;
    }

    .kov-latest-pod-kits__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    /* FIRST BANNER = FULL WIDTH */

    .kov-latest-pod-kits__card:first-child {
      grid-column: 1 / -1;
    }

    /* SECOND + THIRD = 50% EACH */

    .kov-latest-pod-kits__card:nth-child(2),
    .kov-latest-pod-kits__card:nth-child(3) {
      grid-column: auto;
    }

    .kov-latest-pod-kits__brand {
      font-size: 15px;
    }

    .kov-latest-pod-kits__footer-row {
      flex-wrap: nowrap;
    }

    .kov-latest-pod-kits__footer-text {
      min-width: 0;
    }

  }

  /* =========================
     MOBILE
     ALL 100% WIDTH
  ========================= */

  @media (max-width: 749px) {

    .kov-latest-pod-kits {
      padding: 52px 14px;
    }

    .kov-latest-pod-kits__header {
      margin-bottom: 30px;
    }

    .kov-latest-pod-kits__title {
      font-size: 26px;
    }

    .kov-latest-pod-kits__description {
      font-size: 14px;
      line-height: 1.7;
    }

    .kov-latest-pod-kits__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    /* RESET TABLET GRID POSITIONING */

    .kov-latest-pod-kits__card:first-child,
    .kov-latest-pod-kits__card:nth-child(2),
    .kov-latest-pod-kits__card:nth-child(3) {
      grid-column: auto;
    }

    .kov-latest-pod-kits__content {
      padding: 15px 12px 16px;
    }

    .kov-latest-pod-kits__brand {
      font-size: 15px;
      line-height: 1.35;
    }

    .kov-latest-pod-kits__arrow {
      font-size: 18px;
    }

    .kov-latest-pod-kits__footer {
      margin-top: 32px;
      padding: 20px 13px;
    }

    .kov-latest-pod-kits__footer-row {
      flex-direction: column;
      align-items: stretch;

      gap: 14px;
    }

    .kov-latest-pod-kits__footer-text {
      font-size: 12px;
      text-align: center;
    }

    .kov-latest-pod-kits__button {
      width: 100%;

      text-align: center;
    }

  }




  __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     VAPE CLEARANCE UK SECTION
  ===================================================== */

  .kov-clearance-home,
  .kov-clearance-home * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-clearance-home {
    width: 100%;
    padding: 80px 20px;

    background-color: #FFFFFF;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-clearance-home__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-clearance-home__header {
    max-width: 900px;

    margin: 0 auto 40px;

    text-align: center;
  }


  .kov-clearance-home__header::before {
    content: "";

    display: block;

    width: 48px;
    height: 2px;

    margin: 0 auto 15px;

    background-color: #C7A35B;
  }


  .kov-clearance-home__title {
    margin: 0 0 14px;

    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-clearance-home__description {
    max-width: 850px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.75;

    color: #555555;
  }


  /* =====================================================
     PRODUCT GRID
  ===================================================== */

  .kov-clearance-home__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
  }


  /* =====================================================
     PRODUCT CARD
  ===================================================== */

  .kov-clearance-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid #ECECEC;

    color: #111111 !important;
    text-decoration: none !important;
  }


  .kov-clearance-card:hover,
  .kov-clearance-card:focus,
  .kov-clearance-card:active,
  .kov-clearance-card:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     PRODUCT IMAGE
  ===================================================== */

  .kov-clearance-card__image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #F5F5F5;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-clearance-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
  }


  /* NO IMAGE ZOOM / NO IMAGE ANIMATION */


  /* =====================================================
     CLEARANCE / SPECIAL OFFER LABEL
  ===================================================== */

  .kov-clearance-card__badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 6px 9px;

    background-color: #C83A3A;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #FFFFFF;
  }


  /* =====================================================
     SMALL GOLD IMAGE DETAIL
  ===================================================== */

  .kov-clearance-card__image-wrap::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  /* =====================================================
     PRODUCT CONTENT
  ===================================================== */

  .kov-clearance-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 18px 14px 20px;

    text-align: center;
  }


  .kov-clearance-card__brand {
    display: block;

    margin: 0 0 5px;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #999999;
  }


  .kov-clearance-card__title {
    margin: 0 0 8px;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;

    color: #111111;
  }


  .kov-clearance-card__text {
    display: block;

    max-width: 330px;

    margin: 0 auto 13px;

    font-size: 12px;
    line-height: 1.6;

    color: #666666;
  }


  .kov-clearance-card__link {
    display: inline-block;

    margin-top: auto;
    padding-bottom: 2px;

    border-bottom: 1px solid #C7A35B;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.065em;
    text-transform: uppercase;

    color: #111111;
  }


  /* =====================================================
     COLLECTION CTA
  ===================================================== */

  .kov-clearance-home__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #F3F3F3;

    border-top: 1px solid #E7E7E7;

    text-align: center;
  }


  .kov-clearance-home__footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-clearance-home__footer-text {
    margin: 0 0 15px;

    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;

    color: #333333;
  }


  .kov-clearance-home__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;
  }


  .kov-clearance-home__button:hover,
  .kov-clearance-home__button:focus,
  .kov-clearance-home__button:active,
  .kov-clearance-home__button:visited {
    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-clearance-home {
      padding: 62px 18px;
    }


    .kov-clearance-home__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-clearance-home {
      padding: 50px 14px;
    }


    .kov-clearance-home__header {
      margin-bottom: 30px;
    }


    .kov-clearance-home__header::before {
      width: 40px;

      margin-bottom: 13px;
    }


    .kov-clearance-home__title {
      font-size: 26px;
    }


    .kov-clearance-home__description {
      font-size: 14px;
      line-height: 1.7;
    }


    /* KEEP TWO PRODUCTS PER ROW */
    .kov-clearance-home__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;
    }


    .kov-clearance-card__badge {
      top: 8px;
      left: 8px;

      padding: 5px 7px;

      font-size: 8px;
    }


    .kov-clearance-card__content {
      padding: 14px 8px 16px;
    }


    .kov-clearance-card__brand {
      font-size: 8.5px;
    }


    .kov-clearance-card__title {
      margin-bottom: 7px;

      font-size: 13px;
      line-height: 1.4;
    }


    .kov-clearance-card__text {
      margin-bottom: 11px;

      font-size: 10.5px;
      line-height: 1.5;
    }


    .kov-clearance-card__link {
      font-size: 8.5px;

      letter-spacing: 0.045em;
    }


    .kov-clearance-home__footer {
      margin-top: 32px;

      padding: 20px 13px;
    }


    .kov-clearance-home__footer-text {
      font-size: 12px;
    }


    .kov-clearance-home__button {
      width: 100%;

      text-align: center;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 430px) {

    .kov-clearance-home {
      padding-left: 12px;
      padding-right: 12px;
    }


    .kov-clearance-home__grid {
      gap: 9px;
    }


    .kov-clearance-card__content {
      padding: 12px 6px 14px;
    }


    .kov-clearance-card__title {
      font-size: 12.5px;
    }


    .kov-clearance-card__text {
      font-size: 10px;
      line-height: 1.45;
    }


    .kov-clearance-card__link {
      font-size: 8px;
    }

  }







  __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     NICOTINE POUCHES SECTION
  ===================================================== */



  .kov-nic-pouches,
  .kov-nic-pouches * {
    box-sizing: border-box;
  }

  .kov-nic-pouches {
    width: 100%;
    padding: 50px 20px;
    background-color: #FAFAFA;
  }

  .kov-nic-pouches__inner {
    width: 100%;
    max-width: 1770px;
    margin: 0 auto;
  }

  /* =========================
     HEADER
  ========================= */

  .kov-nic-pouches__header {
    max-width: 920px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .kov-nic-pouches__header::before {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 auto 15px;
    background-color: #C7A35B;
  }

  .kov-nic-pouches__title {
    margin: 0 0 14px;
    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
  }

  .kov-nic-pouches__description {
    max-width: 860px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: #555555;
  }

  /* =========================
     GRID
     DESKTOP: 3 PER ROW
  ========================= */

  .kov-nic-pouches__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  /* =========================
     CARD
  ========================= */

  .kov-nic-pouches__card {
    display: block;
    width: 100%;
    min-width: 0;
    background-color: #FFFFFF;
    border: 1px solid #ECECEC;
    color: #111111 !important;
    text-decoration: none !important;
    overflow: hidden;
  }

  .kov-nic-pouches__card:hover,
  .kov-nic-pouches__card:focus,
  .kov-nic-pouches__card:active,
  .kov-nic-pouches__card:visited {
    color: #111111 !important;
    text-decoration: none !important;
  }

  /* =========================
     IMAGE
  ========================= */

  .kov-nic-pouches__image-wrap {
    width: 100%;
    aspect-ratio: 600 / 280;
    overflow: hidden;
    background-color: #F4F4F4;
    border-bottom: 1px solid #EEEEEE;
  }

  .kov-nic-pouches__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* =========================
     CARD FOOTER
     TITLE LEFT / ARROW RIGHT
  ========================= */

  .kov-nic-pouches__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 16px 16px 17px;

    text-align: left;
  }

  .kov-nic-pouches__brand {
    display: block;
    min-width: 0;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }

  .kov-nic-pouches__arrow {
    flex: 0 0 auto;

    font-size: 19px;
    line-height: 1;
    font-weight: 700;

    color: #C7A35B;
  }

  /* =========================
     FOOTER STRIPE
  ========================= */

  .kov-nic-pouches__footer {
    position: relative;

    margin-top: 38px;
    padding: 22px 18px;

    background-color: #FFFFFF;

    border-top: 1px solid #E7E7E7;
  }

  .kov-nic-pouches__footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 54px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }

  .kov-nic-pouches__footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
  }

  .kov-nic-pouches__footer-text {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;

    color: #333333;
  }

  .kov-nic-pouches__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 46px;

    padding: 13px 25px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none !important;

    white-space: nowrap;
  }

  .kov-nic-pouches__button:hover,
  .kov-nic-pouches__button:focus,
  .kov-nic-pouches__button:active,
  .kov-nic-pouches__button:visited {
    background-color: #111111 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
  }

  /* =========================
     TABLET
     1 FULL WIDTH + 2 HALF WIDTH
  ========================= */

  @media (min-width: 750px) and (max-width: 1024px) {

    .kov-nic-pouches {
      padding: 60px 18px;
    }

    .kov-nic-pouches__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    /* FIRST BANNER = FULL WIDTH */

    .kov-nic-pouches__card:first-child {
      grid-column: 1 / -1;
    }

    /* SECOND + THIRD = 50% EACH */

    .kov-nic-pouches__card:nth-child(2),
    .kov-nic-pouches__card:nth-child(3) {
      grid-column: auto;
    }

    .kov-nic-pouches__brand {
      font-size: 15px;
    }

    .kov-nic-pouches__footer-row {
      flex-wrap: nowrap;
    }

    .kov-nic-pouches__footer-text {
      min-width: 0;
    }

  }

  /* =========================
     MOBILE
     ALL 100% WIDTH
  ========================= */

  @media (max-width: 749px) {

    .kov-nic-pouches {
      padding: 52px 14px;
    }

    .kov-nic-pouches__header {
      margin-bottom: 30px;
    }

    .kov-nic-pouches__title {
      font-size: 26px;
    }

    .kov-nic-pouches__description {
      font-size: 14px;
      line-height: 1.7;
    }

    .kov-nic-pouches__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    /* RESET TABLET GRID */

    .kov-nic-pouches__card:first-child,
    .kov-nic-pouches__card:nth-child(2),
    .kov-nic-pouches__card:nth-child(3) {
      grid-column: auto;
    }

    .kov-nic-pouches__content {
      padding: 15px 12px 16px;
    }

    .kov-nic-pouches__brand {
      font-size: 15px;
      line-height: 1.35;
    }

    .kov-nic-pouches__arrow {
      font-size: 18px;
    }

    .kov-nic-pouches__footer {
      margin-top: 32px;
      padding: 20px 13px;
    }

    .kov-nic-pouches__footer-row {
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
    }

    .kov-nic-pouches__footer-text {
      font-size: 12px;
      text-align: center;
    }

    .kov-nic-pouches__button {
      width: 100%;
      text-align: center;
    }

  }




  __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     MORE PRODUCTS TO EXPLORE SECTION
  ===================================================== */


  .kov-more-products,
  .kov-more-products * {
    box-sizing: border-box;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .kov-more-products {
    width: 100%;
    padding: 38px 20px;

    background-color: #FAFAFA;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
  }


  .kov-more-products__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     HEADER
  ===================================================== */

  .kov-more-products__header {
    max-width: 820px;

    margin: 0 auto 25px;

    text-align: center;
  }


  .kov-more-products__header::before {
    content: "";

    display: block;

    width: 40px;
    height: 2px;

    margin: 0 auto 11px;

    background-color: #C7A35B;
  }


  .kov-more-products__title {
    margin: 0 0 8px;

    font-size: clamp(23px, 1.8vw, 30px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }


  .kov-more-products__description {
    max-width: 720px;

    margin: 0 auto;

    font-size: 13.5px;
    line-height: 1.65;

    color: #555555;
  }


  /* =====================================================
     GRID
     DESKTOP: 4 PER ROW
  ===================================================== */

  .kov-more-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;
  }


  /* =====================================================
     CARD
  ===================================================== */

  .kov-more-products__card {
    display: block;

    width: 100%;
    min-width: 0;

    overflow: hidden;

    border: 1px solid #E8E8E8;

    background-color: #FFFFFF;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-more-products__card:hover,
  .kov-more-products__card:focus,
  .kov-more-products__card:active,
  .kov-more-products__card:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     REMOVE ELLA EFFECTS
  ===================================================== */

  .kov-more-products__card,
  .kov-more-products__card *,
  .kov-more-products__card::before,
  .kov-more-products__card::after,
  .kov-more-products__card *::before,
  .kov-more-products__card *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;

    box-shadow: none !important;
    filter: none !important;
  }


  .kov-more-products__card::before,
  .kov-more-products__card::after {
    content: none !important;
    display: none !important;
  }


  /* =====================================================
     IMAGE
     ALL BANNERS: 570 × 280
  ===================================================== */

  .kov-more-products__image-wrap {
    width: 100%;
    aspect-ratio: 570 / 280;

    overflow: hidden;

    background-color: #F2F2F2;

    border-bottom: 1px solid #EEEEEE;
  }


  .kov-more-products__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }


  /* =====================================================
     SMALL CARD FOOTER
  ===================================================== */

  .kov-more-products__content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 9px;

    min-height: 49px;

    padding: 10px 12px;
  }


  .kov-more-products__name {
    display: block;

    min-width: 0;

    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-more-products__arrow {
    display: block;

    flex: 0 0 auto;

    font-size: 17px;
    line-height: 1;
    font-weight: 700;

    color: #C7A35B;
  }


  /* =====================================================
     KEYBOARD ACCESSIBILITY
  ===================================================== */

  .kov-more-products__card:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 2px;
  }


  /* =====================================================
     TABLET
     2 PER ROW
  ===================================================== */

  @media (min-width: 750px) and (max-width: 1024px) {

    .kov-more-products {
      padding: 34px 18px;
    }


    .kov-more-products__header {
      margin-bottom: 22px;
    }


    .kov-more-products__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 12px;
    }


    .kov-more-products__name {
      font-size: 13px;
    }

  }


  /* =====================================================
     MOBILE
     2 PER ROW
  ===================================================== */

  @media (max-width: 749px) {

    .kov-more-products {
      padding: 30px 12px;
    }


    .kov-more-products__header {
      margin-bottom: 19px;
    }


    .kov-more-products__header::before {
      width: 34px;

      margin-bottom: 9px;
    }


    .kov-more-products__title {
      margin-bottom: 7px;

      font-size: 22px;
    }


    .kov-more-products__description {
      max-width: 560px;

      font-size: 12.5px;
      line-height: 1.6;
    }


    .kov-more-products__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 8px;
    }


    .kov-more-products__content {
      align-items: flex-start;

      min-height: 55px;

      padding: 9px 8px;
    }


    .kov-more-products__name {
      font-size: 11.5px;
      line-height: 1.3;
    }


    .kov-more-products__arrow {
      margin-top: 1px;

      font-size: 15px;
    }

  }


  /* =====================================================
     VERY SMALL MOBILE
  ===================================================== */

  @media (max-width: 390px) {

    .kov-more-products {
      padding-left: 10px;
      padding-right: 10px;
    }


    .kov-more-products__grid {
      gap: 6px;
    }


    .kov-more-products__content {
      min-height: 54px;

      padding-left: 7px;
      padding-right: 7px;
    }


    .kov-more-products__name {
      font-size: 11px;
    }

  }


  __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     UK Vape Wholesale Supplier for Trade Customers SECTION
  ===================================================== */



    .kov-home-authority,
  .kov-home-authority * {
    box-sizing: border-box;
  }

  /* =====================================================
     COMPACT KOV AUTHORITY + WHO WE SUPPLY
  ===================================================== */

  .kov-home-authority {
    width: 100%;

    padding: 100px 20px;

    background-color: #FFFFFF;

    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;

    font-family: inherit;
  }

  .kov-home-authority__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }


  /* =====================================================
     KOV AUTHORITY PANEL
  ===================================================== */

  .kov-home-authority__panel {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.65fr);

    gap: 54px;

    align-items: center;

    padding: 48px 50px;

    overflow: hidden;

    background-color: #111111;

    border: 1px solid #222222;
  }

  .kov-home-authority__panel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50px;

    width: 92px;
    height: 3px;

    background-color: #C7A35B;
  }

  .kov-home-authority__panel::after {
    content: "KOV";

    position: absolute;

    right: 26px;
    bottom: -26px;

    font-size: clamp(96px, 9vw, 170px);
    line-height: 1;
    font-weight: 800;

    letter-spacing: -0.08em;

    color: rgba(255, 255, 255, 0.025);

    pointer-events: none;
    user-select: none;
  }

  .kov-home-authority__content,
  .kov-home-authority__links {
    position: relative;

    z-index: 2;
  }

  .kov-home-authority__eyebrow {
    margin: 0 0 9px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #C7A35B;
  }

  .kov-home-authority__title {
    max-width: 800px;

    margin: 0 0 16px;

    font-size: clamp(29px, 2.5vw, 40px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.025em;

    color: #FFFFFF;
  }

  .kov-home-authority__text {
    max-width: 900px;

    margin: 0;

    font-size: 14px;
    line-height: 1.78;

    color: #C7C7C7;
  }

  .kov-home-authority__text + .kov-home-authority__text {
    margin-top: 12px;
  }

  .kov-home-authority__text strong {
    color: #FFFFFF;
  }


  /* =====================================================
     FEATURED WHOLESALE BRAND LINKS
  ===================================================== */

  .kov-home-authority__brand-area {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(170px, 0.9fr) minmax(0, 1.6fr);

    gap: 1px;

    padding: 1px;

    background-color: #333333;
  }

  .kov-home-authority__brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1px;
  }

  .kov-home-authority__link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    min-width: 0;
    min-height: 84px;

    padding: 16px 18px;

    background-color: #111111;

    border: 0;

    color: #FFFFFF !important;
    text-decoration: none !important;
  }

  .kov-home-authority__link:hover,
  .kov-home-authority__link:focus,
  .kov-home-authority__link:active,
  .kov-home-authority__link:visited {
    background-color: #111111 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
  }

  /* FEATURED HIGO TILE - LEFT OF THE OTHER BRANDS */
  .kov-home-authority__link--higo {
    min-height: 169px;

    justify-content: center;

    padding: 24px 20px;
  }

  .kov-home-authority__link--higo .kov-home-authority__brand-logo-wrap {
    justify-content: center;

    max-width: 190px;
    height: 64px;
  }

  .kov-home-authority__link--higo .kov-home-authority__brand-logo {
    max-height: 64px;

    object-position: center;
  }

  .kov-home-authority__link--higo .kov-home-authority__arrow {
    position: absolute;

    right: 17px;
    bottom: 16px;
  }

  .kov-home-authority__brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 155px;
    height: 44px;
  }

  .kov-home-authority__brand-logo {
    display: block;

    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 44px;

    object-fit: contain;
    object-position: center;
  }

  /* HIGO LOGO: BLACK SOURCE ARTWORK → WHITE */
  .kov-home-authority__brand-logo--higo {
    filter: brightness(0) invert(1);
  }

  .kov-home-authority__arrow {
    flex: 0 0 auto;

    font-size: 16px;
    line-height: 1;

    color: #C7A35B;
  }

  .kov-home-authority__small-links {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 18px;
  }

  .kov-home-authority__small-link {
    color: #D0D0D0 !important;

    font-size: 10.5px;
    line-height: 1.5;
    font-weight: 600;

    text-decoration: underline;
    text-decoration-color: #C7A35B;
    text-underline-offset: 3px;
  }

  .kov-home-authority__small-link:hover,
  .kov-home-authority__small-link:focus,
  .kov-home-authority__small-link:visited {
    color: #FFFFFF !important;
  }


  /* =====================================================
     WHO WE SUPPLY
  ===================================================== */

  .kov-home-authority__supply {
    padding-top: 58px;
  }

  .kov-home-authority__supply-header {
    max-width: 830px;

    margin: 0 auto 32px;

    text-align: center;
  }

  .kov-home-authority__supply-header::before {
    content: "";

    display: block;

    width: 46px;
    height: 2px;

    margin: 0 auto 13px;

    background-color: #C7A35B;
  }

  .kov-home-authority__supply-eyebrow {
    margin: 0 0 7px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #8A6D3B;
  }

  .kov-home-authority__supply-title {
    margin: 0 0 11px;

    font-size: clamp(27px, 2.1vw, 36px);
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #111111;
  }

  .kov-home-authority__supply-description {
    max-width: 790px;

    margin: 0 auto;

    font-size: 14px;
    line-height: 1.72;

    color: #5B5B5B;
  }


  /* =====================================================
     SUPPLY GRID
  ===================================================== */

  .kov-home-authority__supply-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .kov-home-authority__supply-item {
    position: relative;

    min-height: 165px;

    padding: 24px 22px 22px;

    background-color: #FFFFFF;

    border: 1px solid #E5E5E5;
  }

  .kov-home-authority__supply-item::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 22px;

    width: 36px;
    height: 2px;

    background-color: #C7A35B;
  }

  .kov-home-authority__supply-top {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
  }

  .kov-home-authority__supply-number {
    font-size: 8.5px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.11em;

    color: #98773E;
  }

  .kov-home-authority__supply-divider {
    width: 20px;
    height: 1px;

    background-color: #DDDDDD;
  }

  .kov-home-authority__supply-type {
    font-size: 8.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #999999;
  }

  .kov-home-authority__supply-item h3 {
    margin: 0 0 7px;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;

    letter-spacing: -0.01em;

    color: #111111;
  }

  .kov-home-authority__supply-item p {
    margin: 0;

    font-size: 12px;
    line-height: 1.65;

    color: #666666;
  }


  /* =====================================================
     TRADE ACCOUNT CTA
  ===================================================== */

  .kov-home-authority__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 27px;
  }

  .kov-home-authority__cta-text {
    margin: 0;

    font-size: 12.5px;
    line-height: 1.6;
    font-weight: 600;

    color: #333333;
  }

  .kov-home-authority__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 12px 21px;

    border: 1px solid #111111;

    background-color: #111111;

    color: #FFFFFF !important;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-align: center;

    text-decoration: none !important;
  }

  .kov-home-authority__button:hover,
  .kov-home-authority__button:focus,
  .kov-home-authority__button:active,
  .kov-home-authority__button:visited {
    border-color: #111111;

    background-color: #111111 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }

  .kov-home-authority__button-arrow {
    margin-left: 9px;

    font-size: 14px;
    line-height: 1;

    color: #C7A35B;
  }


  /* =====================================================
     LAPTOP
  ===================================================== */

  @media (max-width: 1100px) {

    .kov-home-authority {
      padding: 60px 18px;
    }

    .kov-home-authority__panel {
      grid-template-columns: 1fr;

      gap: 30px;

      padding: 44px 38px;
    }

    .kov-home-authority__panel::before {
      left: 38px;
    }

    .kov-home-authority__brand-area {
      max-width: 900px;
    }

    .kov-home-authority__supply-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-home-authority {
      padding: 48px 12px;
    }

    .kov-home-authority__panel {
      gap: 26px;

      padding: 38px 16px 22px;

      text-align: center;
    }

    .kov-home-authority__panel::before {
      left: 50%;

      width: 70px;

      transform: translateX(-50%);
    }

    .kov-home-authority__panel::after {
      right: -4px;
      bottom: -10px;

      font-size: 88px;
    }

    .kov-home-authority__eyebrow {
      font-size: 9px;
    }

    .kov-home-authority__title {
      font-size: 27px;
    }

    .kov-home-authority__text {
      font-size: 13px;
      line-height: 1.72;
    }

    .kov-home-authority__brand-area {
      grid-template-columns: 1fr;

      width: 100%;
    }

    .kov-home-authority__brand-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));

      width: 100%;
    }

    .kov-home-authority__link {
      min-height: 72px;

      padding: 12px 11px;

      text-align: left;
    }

    /* HIGO IS ONE FULL-WIDTH ROW ON MOBILE */
    .kov-home-authority__link--higo {
      min-height: 92px;

      padding: 16px 14px;
    }

    .kov-home-authority__link--higo .kov-home-authority__brand-logo-wrap {
      max-width: 150px;
      height: 48px;
    }

    .kov-home-authority__link--higo .kov-home-authority__brand-logo {
      max-height: 48px;
    }

    .kov-home-authority__link--higo .kov-home-authority__arrow {
      right: 13px;
      bottom: 12px;
    }

    .kov-home-authority__brand-logo-wrap {
      max-width: 112px;
      height: 34px;
    }

    .kov-home-authority__brand-logo {
      max-height: 34px;
    }

    .kov-home-authority__arrow {
      font-size: 14px;
    }

    .kov-home-authority__small-links {
      justify-content: center;

      gap: 15px;

      margin-top: 16px;
    }

    .kov-home-authority__supply {
      padding-top: 46px;
    }

    .kov-home-authority__supply-header {
      margin-bottom: 26px;
    }

    .kov-home-authority__supply-header::before {
      width: 40px;
    }

    .kov-home-authority__supply-eyebrow {
      font-size: 9px;
    }

    .kov-home-authority__supply-title {
      font-size: 25px;
    }

    .kov-home-authority__supply-description {
      font-size: 13px;
      line-height: 1.68;
    }

    .kov-home-authority__supply-grid {
      grid-template-columns: 1fr;

      gap: 10px;
    }

    .kov-home-authority__supply-item {
      min-height: auto;

      padding: 22px 17px 20px;

      text-align: center;
    }

    .kov-home-authority__supply-item::before {
      left: 50%;

      width: 34px;

      transform: translateX(-50%);
    }

    .kov-home-authority__supply-top {
      justify-content: center;

      margin-bottom: 14px;
    }

    .kov-home-authority__supply-item h3 {
      font-size: 15px;
    }

    .kov-home-authority__supply-item p {
      max-width: 560px;

      margin-left: auto;
      margin-right: auto;

      font-size: 11.5px;
      line-height: 1.62;
    }

    .kov-home-authority__cta {
      display: grid;
      grid-template-columns: 1fr;

      gap: 12px;

      margin-top: 22px;

      text-align: center;
    }

    .kov-home-authority__cta-text {
      font-size: 12px;
    }

    .kov-home-authority__button {
      width: 100%;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 390px) {

    .kov-home-authority {
      padding-left: 10px;
      padding-right: 10px;
    }

    .kov-home-authority__panel {
      padding-left: 14px;
      padding-right: 14px;
    }

    .kov-home-authority__link {
      min-height: 66px;

      padding-left: 9px;
      padding-right: 9px;
    }

    .kov-home-authority__link--higo {
      min-height: 86px;
    }

    .kov-home-authority__link--higo .kov-home-authority__brand-logo-wrap {
      max-width: 132px;
      height: 42px;
    }

    .kov-home-authority__link--higo .kov-home-authority__brand-logo {
      max-height: 42px;
    }

    .kov-home-authority__brand-logo-wrap {
      max-width: 94px;
      height: 30px;
    }

    .kov-home-authority__brand-logo {
      max-height: 30px;
    }

    .kov-home-authority__supply-item {
      padding-left: 14px;
      padding-right: 14px;
    }

  }


    __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     KOV TRADE RESOURCES SECTION
  ===================================================== */


  .kov-prefooter,
  .kov-prefooter * {
    box-sizing: border-box;
  }


  /* =====================================================
     SITEWIDE PRE-FOOTER STRIP
  ===================================================== */

  .kov-prefooter {
    width: 100%;

    background-color: #111111;

    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;

    font-family: inherit;
  }


  .kov-prefooter__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
    padding: 0 20px;
  }


  /* =====================================================
     SMALL TOP BAR
  ===================================================== */

  .kov-prefooter__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    min-height: 52px;

    border-bottom: 1px solid #303030;
  }


  .kov-prefooter__label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 0;

    font-family: inherit;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: #C7A35B;
  }


  .kov-prefooter__label::before {
    content: "";

    width: 34px;
    height: 2px;

    background-color: #C7A35B;
  }


  .kov-prefooter__top-text {
    margin: 0;

    font-family: inherit;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;

    color: #8D8D8D;
  }


  /* =====================================================
     MAIN LINKS GRID
  ===================================================== */

  .kov-prefooter__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-left: 1px solid #303030;
  }


  /* =====================================================
     ITEM
  ===================================================== */

  .kov-prefooter__item {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 150px;

    padding: 25px 24px 23px;

    border-right: 1px solid #303030;

    background-color: #181818;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  .kov-prefooter__item:hover,
  .kov-prefooter__item:focus,
  .kov-prefooter__item:active,
  .kov-prefooter__item:visited {
    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* SMALL GOLD DETAIL */

  .kov-prefooter__item::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 24px;

    width: 34px;
    height: 2px;

    background-color: #C7A35B;
  }


  /* =====================================================
     EYEBROW
  ===================================================== */

  .kov-prefooter__eyebrow {
    display: block;

    margin: 0 0 9px;

    font-family: inherit;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: #8E8E8E;
  }


  /* =====================================================
     TITLE
  ===================================================== */

  .kov-prefooter__title {
    display: block;

    margin: 0 0 7px;

    font-family: inherit;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;

    color: #FFFFFF;
  }


  /* =====================================================
     DESCRIPTION
  ===================================================== */

  .kov-prefooter__text {
    display: block;

    max-width: 310px;

    margin: 0;

    font-family: inherit;

    font-size: 11.5px;
    line-height: 1.55;
    font-weight: 400;

    color: #AAAAAA;
  }


  /* =====================================================
     LINK TEXT
  ===================================================== */

  .kov-prefooter__action {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;
    padding-top: 17px;

    font-family: inherit;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #D8D8D8;
  }


  .kov-prefooter__arrow {
    font-size: 14px;
    line-height: 1;

    color: #C7A35B;
  }


  /* =====================================================
     LAPTOP / TABLET
  ===================================================== */

  @media (max-width: 1050px) {

    .kov-prefooter__inner {
      padding: 0 18px;
    }


    .kov-prefooter__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-prefooter__item:nth-child(1),
    .kov-prefooter__item:nth-child(2) {
      border-bottom: 1px solid #303030;
    }


    .kov-prefooter__item {
      min-height: 145px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-prefooter__inner {
      padding: 0 12px;
    }


    .kov-prefooter__top {
      min-height: 48px;

      justify-content: center;
    }


    .kov-prefooter__label {
      font-size: 9px;
    }


    .kov-prefooter__label::before {
      width: 28px;
    }


    .kov-prefooter__top-text {
      display: none;
    }


    .kov-prefooter__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-prefooter__item {
      min-height: 144px;

      padding: 22px 15px 19px;

      text-align: center;
    }


    .kov-prefooter__item::before {
      left: 50%;

      width: 30px;

      transform: translateX(-50%);
    }


    .kov-prefooter__eyebrow {
      font-size: 8px;
    }


    .kov-prefooter__title {
      font-size: 13px;
    }


    .kov-prefooter__text {
      margin-left: auto;
      margin-right: auto;

      font-size: 10px;
      line-height: 1.5;
    }


    .kov-prefooter__action {
      justify-content: center;

      padding-top: 14px;

      font-size: 8px;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 390px) {

    .kov-prefooter__inner {
      padding-left: 10px;
      padding-right: 10px;
    }


    .kov-prefooter__grid {
      grid-template-columns: 1fr;
    }


    .kov-prefooter__item {
      min-height: auto;

      padding: 23px 17px;
    }


    .kov-prefooter__item:not(:last-child) {
      border-bottom: 1px solid #303030;
    }


    .kov-prefooter__action {
      margin-top: 15px;
    }

  }

    __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     BOTTOM LEGACY COMPANY INFO SECTION
  ===================================================== */


    .kov-legal-strip,
  .kov-legal-strip * {
    box-sizing: border-box;
  }

  .kov-legal-strip {
    width: 100%;

    padding: 8px 20px;

    background-color: #FAFAFA;

    border-top: 1px solid #E8E8E8;

    color: #555555;
  }

  .kov-legal-strip__inner {
    width: 100%;
    max-width: 1770px;

    margin: 0 auto;
  }

  .kov-legal-strip p {
    margin: 0;
    padding: 0;

    font-size: 11px;
    line-height: 1.5;

    color: #555555;
  }

  .kov-legal-strip p + p {
    margin-top: 2px;
  }

  .kov-legal-strip strong {
    font-weight: 700;

    color: #222222;
  }

  .kov-legal-strip a,
  .kov-legal-strip a:visited,
  .kov-legal-strip a:hover,
  .kov-legal-strip a:focus,
  .kov-legal-strip a:active {
    color: #222222 !important;

    text-decoration: underline;
    text-decoration-color: #C7A35B;
    text-underline-offset: 2px;
  }


  /* MOBILE */
  @media (max-width: 749px) {

    .kov-legal-strip {
      padding: 8px 12px;
    }

    .kov-legal-strip p {
      font-size: 10px;
      line-height: 1.5;

      text-align: center;
    }

    .kov-legal-strip p + p {
      margin-top: 3px;
    }

  }



    __________________________________________________________________________________________________________________________________________________________________________________

  /* =====================================================
     WHOLESALE KOV REGISTRATION SECTION
  ===================================================== */

    .kov-wholesale-intro,
  .kov-wholesale-intro * {
    box-sizing: border-box;
  }


  /* =====================================================
     PREMIUM KOV WHOLESALE SECTION
  ===================================================== */

  .kov-wholesale-intro {
    width: 100%;

    padding: 82px 20px;

    background-color: #0B0B0B;

    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;

    overflow: visible;
  }


  .kov-wholesale-intro__inner {
    position: relative;

    width: 100%;
    max-width: 1770px;

    margin: 0 auto;

    overflow: visible;
  }


  /* =====================================================
     PREMIUM KOV TYPOGRAPHIC MARK
     TOP RIGHT
     SLIGHTLY OUTSIDE BLACK FRAME
  ===================================================== */

  .kov-wholesale-intro__frame-mark {
    position: absolute;

    z-index: 3;

    top: -94px;
    right: -4px;

    display: block;

    white-space: nowrap;

    font-size: clamp(118px, 9vw, 170px);
    line-height: 0.82;
    font-weight: 800;

    letter-spacing: -0.075em;

    color: rgba(255, 255, 255, 0.065);

    user-select: none;
    pointer-events: none;
  }


  /* =====================================================
     MAIN PREMIUM PANEL
  ===================================================== */

  .kov-wholesale-intro__panel {
    position: relative;

    overflow: hidden;

    padding: 58px;

    background-color: #FAFAFA;

    border: 1px solid #DEDEDE;
  }


  /* SMALL GOLD TOP DETAIL */

  .kov-wholesale-intro__accent {
    position: absolute;

    top: -1px;
    left: 58px;

    width: 96px;
    height: 3px;

    background-color: #C7A35B;
  }


  /* =====================================================
     WHATSAPP QUICK CONTACT
  ===================================================== */

  .kov-wholesale-intro__whatsapp {
    position: absolute;

    z-index: 4;

    top: 22px;
    right: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border: 1px solid #25D366;
    border-radius: 50%;

    background-color: #25D366;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  .kov-wholesale-intro__whatsapp svg {
    display: block;

    width: 20px;
    height: 20px;

    stroke: #FFFFFF;
  }


  .kov-wholesale-intro__whatsapp:hover,
  .kov-wholesale-intro__whatsapp:focus {
    border-color: #1EBD5A;

    background-color: #1EBD5A !important;

    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  .kov-wholesale-intro__whatsapp:active,
  .kov-wholesale-intro__whatsapp:visited {
    color: #FFFFFF !important;

    text-decoration: none !important;
  }


  /* =====================================================
     MAIN GRID
  ===================================================== */

  .kov-wholesale-intro__grid {
    position: relative;

    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);

    gap: 68px;

    align-items: center;
  }


  /* =====================================================
     MAIN CONTENT
  ===================================================== */

  .kov-wholesale-intro__eyebrow {
    margin: 0 0 11px;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #8A6D3B;
  }


  .kov-wholesale-intro__title {
    max-width: 800px;

    margin: 0 0 21px;

    font-size: clamp(31px, 2.8vw, 46px);
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -0.03em;

    color: #111111;
  }


  .kov-wholesale-intro__text {
    max-width: 850px;

    font-size: 14px;
    line-height: 1.82;

    color: #555555;
  }


  .kov-wholesale-intro__text p {
    margin: 0 0 15px;
  }


  .kov-wholesale-intro__text p:last-child {
    margin-bottom: 0;
  }


  .kov-wholesale-intro__text strong {
    color: #222222;
  }


  .kov-wholesale-intro__text a {
    color: #111111 !important;

    font-weight: 600;

    text-decoration: underline;
    text-decoration-color: #C7A35B;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }


  /* =====================================================
     CTA BUTTONS
  ===================================================== */

  .kov-wholesale-intro__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
  }


  .kov-wholesale-intro__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 47px;

    padding: 13px 23px;

    font-size: 10.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.065em;
    text-transform: uppercase;

    text-align: center;

    text-decoration: none !important;
  }


  .kov-wholesale-intro__button--primary,
  .kov-wholesale-intro__button--primary:hover,
  .kov-wholesale-intro__button--primary:focus,
  .kov-wholesale-intro__button--primary:active,
  .kov-wholesale-intro__button--primary:visited {
    border: 1px solid #111111;

    background-color: #111111 !important;

    color: #FFFFFF !important;
  }


  .kov-wholesale-intro__button--secondary,
  .kov-wholesale-intro__button--secondary:hover,
  .kov-wholesale-intro__button--secondary:focus,
  .kov-wholesale-intro__button--secondary:active,
  .kov-wholesale-intro__button--secondary:visited {
    border: 1px solid #C7A35B;

    background-color: #FFFFFF !important;

    color: #111111 !important;
  }


  /* =====================================================
     ACCOUNT HELP
  ===================================================== */

  .kov-wholesale-intro__account-help {
    margin: 17px 0 0;

    font-size: 11.5px;
    line-height: 1.65;

    color: #777777;
  }


  .kov-wholesale-intro__account-help a {
    color: #222222 !important;

    font-weight: 700;

    text-decoration: underline;
    text-decoration-color: #C7A35B;
    text-underline-offset: 3px;
  }


  /* =====================================================
     PRODUCT CATEGORY GRID
  ===================================================== */

  .kov-wholesale-intro__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1px;

    padding: 1px;

    background-color: #DDDDDD;

    border-top: 2px solid #C7A35B;
  }


  .kov-wholesale-intro__category {
    display: flex;
    flex-direction: column;

    min-height: 150px;

    padding: 23px;

    background-color: #FFFFFF;

    color: #111111 !important;

    text-decoration: none !important;
  }


  .kov-wholesale-intro__category-number {
    display: block;

    margin-bottom: 26px;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.12em;

    color: #9A7A41;
  }


  .kov-wholesale-intro__category-title {
    display: block;

    margin-top: auto;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
  }


  .kov-wholesale-intro__category-text {
    display: block;

    margin-top: 5px;

    font-size: 11.5px;
    line-height: 1.5;

    color: #707070;
  }


  .kov-wholesale-intro__category:hover,
  .kov-wholesale-intro__category:focus,
  .kov-wholesale-intro__category:visited {
    color: #111111 !important;

    text-decoration: none !important;
  }


  /* =====================================================
     BRAND STRIP
  ===================================================== */

  .kov-wholesale-intro__brands {
    position: relative;

    z-index: 1;

    margin-top: 42px;
    padding: 26px 24px;

    background-color: #F2F2F2;

    border-top: 1px solid #E4E4E4;

    text-align: center;
  }


  .kov-wholesale-intro__brands::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 50px;
    height: 2px;

    transform: translateX(-50%);

    background-color: #C7A35B;
  }


  .kov-wholesale-intro__brands-label {
    display: block;

    margin-bottom: 9px;

    font-size: 9.5px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #777777;
  }


  .kov-wholesale-intro__brands-list {
    max-width: 1200px;

    margin: 0 auto;

    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;

    color: #222222;
  }


  /* =====================================================
     TABLET
  ===================================================== */

  @media (max-width: 989px) {

    .kov-wholesale-intro {
      padding: 72px 18px;
    }


    .kov-wholesale-intro__frame-mark {
      top: -82px;
      right: -2px;

      font-size: 112px;
      line-height: 0.82;
    }


    .kov-wholesale-intro__panel {
      padding: 48px 40px;
    }


    .kov-wholesale-intro__accent {
      left: 40px;
    }


    .kov-wholesale-intro__grid {
      grid-template-columns: 1fr;

      gap: 42px;
    }


    .kov-wholesale-intro__categories {
      max-width: 760px;
    }

  }


  /* =====================================================
     MOBILE
  ===================================================== */

  @media (max-width: 749px) {

    .kov-wholesale-intro {
      padding: 61px 12px 52px;
    }


    /* KOV MARK */
    .kov-wholesale-intro__frame-mark {
      top: -66px;
      right: 0;

      font-size: 74px;
      line-height: 0.82;

      letter-spacing: -0.075em;
    }


    /* PANEL */
    .kov-wholesale-intro__panel {
      padding: 54px 17px 30px;
    }


    /* GOLD ACCENT */
    .kov-wholesale-intro__accent {
      left: 50%;

      width: 70px;

      transform: translateX(-50%);
    }


    /* WHATSAPP */
    .kov-wholesale-intro__whatsapp {
      top: 13px;
      right: 13px;

      width: 39px;
      height: 39px;
    }


    .kov-wholesale-intro__whatsapp svg {
      width: 18px;
      height: 18px;
    }


    /* MAIN GRID */
    .kov-wholesale-intro__grid {
      gap: 34px;
    }


    /* CONTENT */
    .kov-wholesale-intro__eyebrow,
    .kov-wholesale-intro__title,
    .kov-wholesale-intro__text,
    .kov-wholesale-intro__account-help {
      text-align: center;
    }


    .kov-wholesale-intro__title {
      margin-left: auto;
      margin-right: auto;

      font-size: 28px;
    }


    .kov-wholesale-intro__text {
      font-size: 13px;
      line-height: 1.75;
    }


    /* BUTTONS */
    .kov-wholesale-intro__actions {
      display: grid;
      grid-template-columns: 1fr;

      width: 100%;

      margin-top: 24px;
    }


    .kov-wholesale-intro__button {
      width: 100%;
    }


    /* CATEGORIES */
    .kov-wholesale-intro__categories {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-wholesale-intro__category {
      min-height: 126px;

      padding: 17px 12px;

      text-align: center;
    }


    .kov-wholesale-intro__category-number {
      margin-bottom: 19px;
    }


    .kov-wholesale-intro__category-title {
      font-size: 13px;
    }


    .kov-wholesale-intro__category-text {
      font-size: 10.5px;
    }


    /* BRANDS */
    .kov-wholesale-intro__brands {
      margin-top: 30px;

      padding: 23px 14px;
    }


    .kov-wholesale-intro__brands-list {
      font-size: 12px;
      line-height: 1.85;
    }

  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 390px) {

    .kov-wholesale-intro {
      padding-left: 10px;
      padding-right: 10px;
    }


    .kov-wholesale-intro__frame-mark {
      top: -59px;

      font-size: 66px;
    }


    .kov-wholesale-intro__panel {
      padding-left: 14px;
      padding-right: 14px;
    }


    .kov-wholesale-intro__categories {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .kov-wholesale-intro__category {
      min-height: 122px;

      padding: 15px 8px;
    }


    .kov-wholesale-intro__category-title {
      font-size: 12px;
    }


    .kov-wholesale-intro__category-text {
      font-size: 9.5px;
    }

  }