
#search-trigger {
  cursor: pointer;
}

#search-popup {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 15, 18, 0.72);
}

#search-input {
  align-self: center;
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  border-bottom: 1px solid rgba(255, 204, 51, 0.65);
  background:
    linear-gradient(
      90deg,
      #02090b 0%,
      #063b40 30%,
      #008b95 50%,
      #063b40 70%,
      #02090b 100%
    );
  box-shadow:
    0 4px 18px rgba(0, 220, 230, 0.18),
    0 1px 0 rgba(255, 204, 51, 0.35);
}

#search-input * {
  align-self: center;
}

#search-type {
  width: 100%;
  border: none;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
  color: #ffffff;
  background: transparent;
  outline: none;
}

#search-type::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

#search-type:focus {
  color: #ffffff;
  outline: none;
}

#search-btn {
  font-size: 16px;
  font-weight: 500;
  color: #ffd34e;
}

#search-result {
  min-height: 490px;
  width: 100%;
  padding-top: 80px;
  color: #ffffff;
}

#search-result .container {
  background:
    linear-gradient(
      145deg,
      #02090b 0%,
      #052b2f 55%,
      #063b40 100%
    );
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 204, 51, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

body.search-popup-open {
  overflow: hidden;
}

.search-popup-open #loc_delivery {
  display: none;
}

.search-header svg {
  display: none;
  cursor: pointer;
  color: #ffd34e;
  fill: #ffd34e;
}

.wrapper-search-popup {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #031518;
}

/* SCROLLBAR */
.wrapper-search-popup::-webkit-scrollbar,
ul.result_product::-webkit-scrollbar {
  width: 6px;
}

.wrapper-search-popup::-webkit-scrollbar-track,
ul.result_product::-webkit-scrollbar-track {
  background: #02090b;
}

.wrapper-search-popup::-webkit-scrollbar-thumb,
ul.result_product::-webkit-scrollbar-thumb {
  background: linear-gradient(#00c9d4, #d4a514);
  border-radius: 10px;
}

.group-recommend {
  padding: 20px 40px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 201, 212, 0.08),
      rgba(255, 204, 51, 0.04)
    );
}

.group-recommend h3 {
  color: #ffd34e;
}

.resultsearch {
  display: none;
}

.results {
  padding: 20px 40px;
  background: #031518;
}

.resultsearch label {
  font-weight: 600;
  padding-bottom: 20px;
  display: block;
  margin-bottom: 20px;
  color: #ffd34e;
  border-bottom: 1px solid rgba(0, 220, 230, 0.35);
}

ul.result_product {
  max-height: 300px;
  overflow: auto;
}

.group-promotion ul {
  margin: 0;
}

.group-promotion li {
  list-style: none;
  margin-bottom: 12px;
}

.group-promotion li a {
  color: #eafcfd;
  transition: color .2s ease, text-shadow .2s ease;
}

.group-promotion li a:hover {
  color: #ffd34e;
  text-shadow: 0 0 7px rgba(255, 211, 78, 0.35);
}

.group-recent {
  position: relative;
  padding: 20px 40px;
  background:
    linear-gradient(
      90deg,
      #02090b,
      #063b40,
      #02090b
    );
}

.group-recent ul {
  margin: 0;
}

.group-recent li {
  list-style: none;
  display: inline-block;
  margin-right: 60px;
}

.group-recent li a {
  color: #eafcfd;
  transition: color .2s ease;
}

.group-recent li a:hover {
  color: #00dce8;
}

.last-search svg {
  width: 20px;
  vertical-align: middle;
  color: #00dce8;
  fill: #00dce8;
}

ul.last-search a {
  vertical-align: middle;
  padding: 0 10px;
  color: #ffffff;
}

ul.last-search li span {
  cursor: pointer;
  color: #ffd34e;
}

.delete-all-history {
  position: absolute;
  top: 25px;
  right: 40px;
  text-decoration: underline;
  color: #ffd34e;
  cursor: pointer;
  font-size: 12px;
}

.delete-all-history:hover {
  color: #00e5ef;
}

form.search.search-modal__form {
  position: relative;
}

button.search__button {
  background: transparent;
  border: none;
}

button.search__button svg {
  width: 25px;
  color: #ffd34e;
  fill: #ffd34e;
  filter: drop-shadow(0 0 4px rgba(0, 220, 230, 0.25));
}

button.search__button.field__button {
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

.close-search {
  display: none;
  position: absolute;
  right: 65px;
  top: 10px;
  cursor: pointer;
  color: #ffd34e;
}

.close-search svg {
  fill: #ffd34e;
  color: #ffd34e;
}

.site-overlay {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 180, 190, 0.15),
      rgba(0, 0, 0, 0.82)
    );
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .3s linear;
  display: block !important;
}

.search-popup-open .site-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: -1;
  cursor: pointer;
}

@media (min-width: 991px) {
  .group-recent ul {
    column-count: 3;
  }

  .group-promotion li a {
    font-size: 12px;
    font-weight: 400;
  }

  .group-recent li a {
    font-size: 12px;
    font-weight: 400;
  }
}

.moreresult {
  padding: 10px 40px;
  border-top: 1px solid rgba(255, 204, 51, 0.40);
  background:
    linear-gradient(
      90deg,
      #02090b,
      #06474d,
      #02090b
    );
}

.moreresult * {
  align-self: center;
}

.moreresult p {
  margin: 0;
  font-size: 12px !important;
  color: #ffffff;
}

.moreresult a {
  color: #ffd34e;
}

.moreresult svg {
  width: 13px;
  color: #00dce8;
  fill: #00dce8;
}

@media (max-width: 992px) {

  .icon-key-mobile {
    height: auto !important;
    width: 10px !important;
  }

  body.grid-view.search-popup-open .products {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  button.search__button svg {
    width: 20px;
  }

  #search-result {
    padding-left: 0;
    padding-right: 0;
    padding-top: 55px;
  }

  #search-input {
    height: 55px;
  }

  .group-recommend {
    padding: 20px;
  }

  #search-input .container {
    padding: 0 20px;
  }

  #search-type {
    font-size: 14px;
  }

  #search-btn {
    font-size: 12px;
    text-decoration: underline;
    color: #ffd34e;
  }

  .results {
    padding: 20px;
  }

  .group-recommend h3 {
    font-size: 16px;
  }

  .products .card-body {
    padding: 8px 0px 10px;
  }

  .moreresult {
    padding: 10px 20px;
  }
}


div.advertisement-placeholder {
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.advertisement-text p {
    margin: 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 20px;
    color: #00dce8;
}

div.advertisement-banner {
    margin: 0px auto;
}

div#div-gpt-ad-billboard-placeholder {
    width: 996px;
    margin: 0 auto;
    background: #031518;
    padding-bottom: unset !important;
    min-height: 200px;
}

div#div-gpt-ad-lb-placeholder {
    background: #031518;
    padding-bottom: unset !important;
    min-height: 280px;
}

/* =========================
   CYAN + GOLD + BLACK THEME
   ========================= */
:root {
    --fx-red: #00dce8;
    --fx-silver: #ffd34e;
    --fx-text: #f5ffff;
    --fx-border: rgba(255, 211, 78, .42);
    --fx-bg: rgba(3, 38, 42, .78);
    --fx-shadow: 0 20px 60px rgba(0, 220, 232, .22);

    --purple: #008b95;
    --accent: #ffd34e;
    --white: #ffffff;

    --cyan: #00dce8;
    --cyan-dark: #006d75;
    --cyan-deep: #052f33;
    --gold: #ffd34e;
    --gold-dark: #b88708;
    --black: #02090b;
}

/* =========================
   VIDEO BACKGROUND
   ========================= */
.fx-video-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.fx-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.fx-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(0, 220, 232, .25),
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(255, 211, 78, .15),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(2, 9, 11, .70),
            rgba(5, 47, 51, .48)
        );
}

/* =========================
   ARTICLE
   ========================= */
.fx-article-wrap {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 14px;
}

.fx-article {
    position: relative;
    border-radius: 22px;
    padding: 26px 22px;
    color: var(--fx-text);

    background:
        linear-gradient(
            145deg,
            rgba(2, 9, 11, .82),
            rgba(5, 47, 51, .72),
            rgba(0, 109, 117, .48)
        );

    border: 1px solid var(--fx-border);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45),
        0 0 30px rgba(0, 220, 232, .16),
        inset 0 1px 0 rgba(255, 211, 78, .10);

    backdrop-filter: blur(6px);
}

/* BADGE */
.fx-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    border-radius: 999px;
    color: #02090b;

    background:
        linear-gradient(
            90deg,
            #00dce8,
            #ffd34e
        );

    box-shadow:
        0 0 18px rgba(0, 220, 232, .35),
        0 0 12px rgba(255, 211, 78, .25);
}

.fx-article h1 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #ffffff;

    text-shadow:
        0 0 18px rgba(0, 220, 232, .38);
}

.fx-article h2 {
    font-size: 1.3rem;
    margin: 18px 0 10px;
    border-left: 4px solid var(--gold);
    padding-left: 10px;
    color: #ffd34e;

    text-shadow:
        0 0 10px rgba(255, 211, 78, .22);
}

.fx-article p {
    line-height: 1.75;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .92);
}

.fx-article a {
    color: #00e7f2;
    border-bottom: 1px dashed rgba(255, 211, 78, .70);
    text-decoration: none;
}

.fx-article a:hover {
    color: #ffd34e;

    text-shadow:
        0 0 12px rgba(255, 211, 78, .55);
}

/* =========================
   CALLOUT
   ========================= */
.fx-callout {
    margin: 18px 0;
    padding: 14px;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 220, 232, .13),
            rgba(255, 211, 78, .07)
        );

    border: 1px solid rgba(255, 211, 78, .38);

    box-shadow:
        inset 0 0 20px rgba(0, 220, 232, .06);
}

@media (max-width: 768px) {
    .fx-article-wrap {
        padding: 40px 12px;
    }

    .fx-article h1 {
        font-size: 1.5rem;
    }
}

/* =========================
   FAQ + REVIEW
   ========================= */
.faq-review-section {
    position: relative;
    max-width: 1190px;
    margin: 60px auto;
    padding: 40px 30px;
    border-radius: 25px;

    background:
        radial-gradient(
            circle at top,
            rgba(0, 220, 232, .12),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(2, 9, 11, .96),
            rgba(5, 47, 51, .90),
            rgba(2, 9, 11, .96)
        );

    border: 1px solid rgba(255, 211, 78, .30);

    overflow: hidden;

    box-shadow:
        0 0 40px rgba(0, 220, 232, .28),
        0 0 20px rgba(255, 211, 78, .10);
}

.faq-review-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 220, 232, .12),
            transparent 65%
        );

    animation: spinAura 15s linear infinite;
    top: -25%;
    left: -25%;
}

@keyframes spinAura {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   SECTION TITLE
   ========================= */
.section-title {
    text-align: center;
    color: var(--gold);
    font-size: 1.9rem;
    letter-spacing: 1px;
    font-weight: 700;

    text-shadow:
        0 0 12px rgba(255, 211, 78, .40),
        0 0 24px rgba(0, 220, 232, .25);

    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            var(--gold),
            var(--cyan),
            transparent
        );

    display: block;
    margin: 10px auto;
    border-radius: 2px;

    box-shadow:
        0 0 10px rgba(0, 220, 232, .45),
        0 0 8px rgba(255, 211, 78, .35);

    animation: pulseLine 2s infinite alternate;
}

@keyframes pulseLine {
    from {
        opacity: .6;
        transform: scaleX(.7);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* =========================
   FAQ / REVIEW CARDS
   ========================= */
.faq-item,
.review-item {
    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(5, 47, 51, .90),
            rgba(0, 109, 117, .48),
            rgba(2, 9, 11, .88)
        );

    border: 1px solid rgba(255, 211, 78, .30);
    border-radius: 18px;
    padding: 18px 20px;
    margin: 18px 0;

    color: var(--white);

    box-shadow:
        inset 0 0 0 rgba(0, 220, 232, 0),
        0 8px 25px rgba(0, 0, 0, .20);

    transform:
        perspective(800px)
        rotateX(15deg)
        scale(.95);

    opacity: 0;

    transition:
        all .7s ease,
        box-shadow .4s ease;
}

.faq-item.show,
.review-item.show {
    opacity: 1;

    transform:
        perspective(800px)
        rotateX(0deg)
        scale(1);
}

.faq-item:hover,
.review-item:hover {
    background:
        linear-gradient(
            135deg,
            rgba(0, 109, 117, .72),
            rgba(5, 47, 51, .92)
        );

    border-color: rgba(255, 211, 78, .65);

    box-shadow:
        0 0 25px rgba(0, 220, 232, .28),
        0 0 12px rgba(255, 211, 78, .15);

    transform: scale(1.02);
}

/* =========================
   FAQ QUESTION
   ========================= */
.faq-question {
    cursor: pointer;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    font-size: 1.9rem;
    padding-right: 25px;

    text-shadow:
        0 0 10px rgba(255, 211, 78, .30);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #00e7f2;
    font-weight: bold;
    font-size: 1.4rem;

    text-shadow:
        0 0 10px rgba(0, 220, 232, .65);

    transition: transform .3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* =========================
   FAQ ANSWER
   ========================= */
.faq-answer {
    display: none;
    color: #ffffff;
    line-height: 1.6em;
    padding-top: 10px;

    border-top:
        1px dashed rgba(255, 211, 78, .35);

    margin-top: 10px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeUp .4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   REVIEW
   ========================= */
.review-author {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.9rem;

    text-shadow:
        0 0 10px rgba(255, 211, 78, .35);
}

.review-text {
    color: #ffffff;
    margin: 6px 0;
    font-style: italic;
}

.review-rating {
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;

    text-shadow:
        0 0 8px rgba(255, 211, 78, .45);
}

/* =========================
   GLOW BORDER
   ========================= */
.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;

    background:
        linear-gradient(
            120deg,
            var(--cyan),
            var(--gold),
            var(--cyan)
        ) border-box;

    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    opacity: 0;
    transition: opacity .3s ease;

    pointer-events: none;
}

.faq-item:hover::before {
    opacity: .65;
}

@keyframes borderGlow {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
    .faq-review-section {
        padding: 28px 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

#notification {
  z-index: 99;
  width: 100%;
  transition: top 0.2s ease-in-out;
}

#notification.promo-up {
  top: -48px !important;
}

/* CYAN + BLACK + GOLD */
.promo-bg {
  width: 100%;
  padding: 6px 0;
  background:
    linear-gradient(
      90deg,
      #02090b 0%,
      #063b40 18%,
      #008f99 50%,
      #063b40 82%,
      #02090b 100%
    );
  border-top: 1px solid rgba(255, 200, 45, 0.65);
  border-bottom: 1px solid #d4a514;
  box-shadow:
    0 2px 10px rgba(0, 220, 230, 0.20),
    inset 0 1px 0 rgba(255, 215, 80, 0.15);
}

.notification__message p {
  margin: 0;
  color: #ffffff;
  font-size: 14px !important;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.notification__message p a {
  color: #ffd34e;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.notification__message p a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 211, 78, 0.65);
}

@media (max-width: 991px) {
  .notification__message p {
    font-size: 14px !important;
  }
}
