/* ===== RESET & BASE ===== */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid #edf2f7;
}
html {
  -webkit-text-size-adjust: 100%;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #405cb3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #1139b5;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1140px) {
  html {
    font-size: calc(14.66667px + 0.41667vw);
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.hidden {
  display: none !important;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.w-full {
  width: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.rounded-full {
  border-radius: 9999px;
}
.font-700 {
  font-weight: 700;
}
.font-600 {
  font-weight: 600;
}
.text-white {
  color: #fff;
}
.text-10px {
  font-size: 10px;
}
.text-14px {
  font-size: 14px;
}
.text-18px {
  font-size: 18px;
}
.text-20px {
  font-size: 20px;
}
.text-25px {
  font-size: 25px;
}
.uppercase {
  text-transform: uppercase;
}
.py-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}
.px-10px {
  padding-left: 10px;
  padding-right: 10px;
}
.mt-15px {
  margin-top: 15px;
}
.mb-15px {
  margin-bottom: 15px;
}
.my-15px {
  margin-top: 15px;
  margin-bottom: 15px;
}
.-mt-4px {
  margin-top: -4px;
}
.mr-5px {
  margin-right: 5px;
}
.mx-5px {
  margin-left: 5px;
  margin-right: 5px;
}
.w-35px {
  width: 35px;
}
.h-35px {
  height: 35px;
}
@media (min-width: 768px) {
  .md\:inline {
    display: inline !important;
  }
  .md\:hidden {
    display: none !important;
  }
  .md\:h-25px {
    height: 25px;
  }
  .md\:w-25px {
    width: 25px;
  }
  .md\:relative {
    position: relative;
  }
  .md\:my-20px {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .md\:py-15px {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .md\:px-15px {
    padding-left: 15px;
    padding-right: 15px;
  }
  .md\:block {
    display: block;
  }
}
@media (min-width: 920px) {
  .md\:ml-0 {
    margin-left: 0;
  }
}

/* ===== HEADER ===== */
.header-upper {
  background-color: #344a5f;
  color: rgba(255, 255, 255, 0.67);
}
.logo-container--wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.07);
}
.logo img {
  margin-right: 10px;
  width: 30px;
}
.trends {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
}
.product-name {
  color: #1582c5;
  font-size: 20px;
  font-weight: 600;
}
.divider {
  background-color: #d6d6d6;
  height: 20px;
  width: 1px;
  margin: 0 10px -2px 11px;
  display: inline-block;
}
.flag {
  font-size: 14px;
  font-weight: 400;
}
.flag img {
  display: inline-block;
  width: 30px;
  margin-left: 4px;
  vertical-align: middle;
}
@media (max-width: 1140px) {
  .logo img {
    width: 20px;
    margin-right: 6px;
  }
  .trends {
    font-size: 18px;
  }
  .product-name {
    font-size: 16px;
  }
  .flag {
    font-size: 12px;
  }
  .flag img {
    width: 24px;
  }
}

/* ===== ATTENTION BAR ===== */
.attention-bar {
  background-color: rgba(255, 227, 149, 0.53);
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .attention-bar {
    padding: 15px;
  }
}

/* ===== ARTICLE ===== */
.h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -1px;
  color: #2f2f2f;
}
.subtitle {
  font-size: 20px;
}
@media (max-width: 1140px) {
  .h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .subtitle {
    font-size: 16px;
  }
}

/* ===== POST META ===== */
.post-meta {
  font-size: 14px;
  color: gray;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post-meta .stars-img {
  width: 100px;
}
.author-img {
  border-radius: 50%;
}
.trending-counter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.trending-counter .like-img {
  display: inline;
  margin-right: 4px;
}
@media (max-width: 1140px) {
  .post-meta {
    font-size: 12px;
  }
  .post-meta .stars-img {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .trending-counter {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
  }
}

/* ===== POST CONTENT ===== */
.post-content p {
  font-size: 18.8px;
  line-height: 1.6;
  margin-bottom: 18.8px;
  color: #222;
}
.post-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  margin: 22px 0;
}
.post-content h3 {
  font-size: 21.8px;
  font-weight: 700;
  line-height: 32.7px;
  margin-bottom: 18.8px;
}
.post-content img,
.post-content video {
  margin-bottom: 18.8px;
  width: 100%;
}
.post-content .block_one {
  background-color: #edf3fd;
  padding: 20px;
  border-radius: 4px;
}
.post-content .has-background {
  padding: 15px 20px;
  border-radius: 4px;
}
.post-content .warning_block {
  background-color: #cf2e2e;
  color: #fff;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}
@media (max-width: 1140px) {
  .post-content p {
    font-size: calc(14.66667px + 0.41667vw);
    line-height: 1.6;
  }
  .post-content h2 {
    font-size: 22px !important;
    line-height: 33px !important;
    margin: 18px 0 !important;
  }
  .post-content h3 {
    font-size: calc(14.66667px + 0.81667vw);
  }
  .post-content .warning_block {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .post-content .warning_block {
    font-size: 16px;
    padding: 15px;
  }
}

/* ===== ZIGZAG ===== */
.zigzag_container {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .zigzag_container {
    grid-template-columns: 1fr;
  }
  .zigzag_container>div {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}
.zig_zag_text_block h2 {
  margin-top: 0;
}

/* ===== FEATURES LIST ===== */
.features-container {
  background: #fbfbfb;
  border: 1px solid #f1f1f1;
  padding: 25px;
  margin-bottom: 15px;
}
.features-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}
.features-row .svg-media {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-top: 3px;
  color: #16c60c;
}
.features-row .list-item-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 18px;
}
.flex-heading {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 461px) {
  .features-container {
    padding: 10px;
  }
  .features-row .list-item-content {
    font-size: 16.2px;
    line-height: 1.5;
  }
  .features-row .svg-media {
    width: 18px;
    height: 18px;
  }
}

/* ===== CTA BUTTON ===== */
.wp-block-cc-cta-block {
  margin: 20px 0;
}
#button-front {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background-color: #0bac4b;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 0 #04461e;
  font-size: 20px;
  font-weight: 700;
  padding: 16px;
  text-align: center;
  transition: background-color 0.2s, box-shadow 0.2s;
  min-height: 56px;
  width: 100%;
}
#button-front:hover {
  background-color: #067131 !important;
}
.button-label {
  margin-right: 5px;
}
.text-img {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.4;
}
@media (max-width: 640px) {
  #button-front {
    font-size: 18px;
    padding: 14px;
  }
  .text-img {
    font-size: 12px;
  }
}

/* ===== COUPON ===== */
.coupon {
  border: 3px dashed #000;
  padding: 20px 20px 0;
  background: #fff7e5;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.coupon p {
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .coupon p {
    font-size: 16.6px;
    line-height: 1.5;
  }
}

/* ===== CUSTOMER RATINGS ===== */
.customer-ratings {
  background: #fafafa;
  border-radius: 4px;
  padding: 15px;
  margin-top: 20px;
}
.customer-ratings .h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
}
.customer-ratings .overal-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 18px;
}
.customer-ratings .overal-rating img {
  width: 110px;
}
.stats--wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 15px 20px;
  align-items: center;
  padding: 15px;
}
.stats--wrapper .bar {
  background: #c5c5c5;
  border-radius: 15px;
  height: 20px;
  position: relative;
  width: 100%;
}
.stats--wrapper .bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 15px;
  background: #195ca3;
}
.stats--wrapper .bar.bar-9:after {
  width: 90%;
}
.stats--wrapper .bar.bar-10:after {
  width: 100%;
}
.stats--wrapper .bar.bar-8:after {
  width: 80%;
}
.stats--wrapper .number {
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .stats--wrapper {
    grid-template-columns: 2fr 1fr;
    gap: 10px;
  }
}

/* ===== SIDEBAR ===== */
aside.sidebar {
  position: sticky;
  top: 10px;
  width: 250px;
  margin-left: 20px;
  margin-top: 10px;
  border: 1px solid #e5e5e5;
  padding: 15px 10px;
  background: #fff;
  flex-shrink: 0;
}
.sidebar-header--wrapper {
  background: rgba(240, 240, 240, 0.8);
  padding: 20px 20px 5px;
  margin-bottom: 15px;
  text-align: center;
}
.sidebar-header--wrapper .h3 {
  font-size: 20px;
  font-weight: 700;
}
.sidebar-header--wrapper img {
  width: 80px;
}
.sidebar .button-sidebar {
  display: block;
  background: #0bac4b;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 0 #04461e;
  font-size: 17px;
  font-weight: 700;
  padding: 16px;
  text-align: center;
  transition: background 0.2s;
}
.sidebar .button-sidebar:hover {
  background: #067131;
}
.sidebar-text {
  display: block;
  text-align: center;
  padding-bottom: 10px;
  font-size: 15px;
}
@media (max-width: 920px) {
  aside.sidebar {
    display: none;
  }
    article {
      max-width: 100% !important;
    }
}
@media (max-width: 1040px) {
  aside.sidebar {
    width: 220px;
    margin-left: 15px;
  }
}

/* ===== COMMENTS ===== */
.comment-section {
  margin-top: 15px;
}
.comment {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.comment:last-child {
  border-bottom: none;
}
.comment .profile-pic img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.comment .section {
  flex: 1;
}
.comment .username {
  color: #3658a6;
  font-weight: 700;
  font-size: 14px;
}
.comment .user_location {
  color: #999;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.comment .user_location img {
  width: 20px;
  display: inline-block;
}
.comment .name-location {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}
.comment .comment-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.comment .action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #3658a6;
}
.comment .action-buttons .like-icon {
  width: 18px;
  height: 18px;
}
.comment .like-btn-count {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .comment {
    gap: 10px;
  }
  .comment .profile-pic img {
    width: 40px;
    height: 40px;
  }
  .comment .comment-text {
    font-size: 14px;
  }
}

/* ===== FOOTER ===== */
#footer {
  background: #121212;
  color: rgba(255, 255, 255, 0.23);
  font-size: 12px;
  padding: 45px 0;
  margin-top: 40px;
}
#footer a {
  color: gray;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.2s;
}
#footer a:hover {
  color: #fff;
}
#footer .divider {
  background: wheat;
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 15px;
  vertical-align: middle;
}
.article-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .article-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  #footer .divider {
    display: none;
  }
}

/* ===== FLOATING CTA ===== */
#floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 1px 5px 20px 3px rgba(0, 0, 0, 0.22);
  padding: 15px 0;
  z-index: 30;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
#floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#floating-cta .button {
  display: block;
  background: #0bac4b;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 0 #04461e;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  text-align: center;
  transition: background 0.2s;
  max-width: 350px;
  margin: 0 auto;
}
#floating-cta .button:hover {
  background: #067131;
}
#floating-cta .button img {
  display: inline;
  width: 18px;
  margin-left: 6px;
}
@media (max-width: 640px) {
  #floating-cta .button {
    font-size: 17px;
    padding: 12px 16px;
    max-width: 100%;
  }
}

/* ===== RESPONSIVE LAYOUT ===== */
.main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 5px;
}
article {
  max-width: calc(100% - 280px);
  width: 100%;
}
@media (max-width: 920px) {
  article {
    max-width: 100%;
  }
  body {
    word-break: break-word;
  }
}
@media (max-width: 1140px) {
  article {
    max-width: calc(100% - 240px);
  }
}