:root {
  --bs-body-font-family: "Roboto", sans-serif;
  --bs-body-bg: #ffffff;
  --bs-body-color: #202020;
  --bs-heading-font-family: "Rubik", sans-serif;
  --bs-heading-color: #202020;
  --bs-primary-rgb: 45, 93, 202;

  --white: #ffffff;
  --star-color: #fab73b;

  --header-line: #ebecef;
  --hero-primary-subtitle: #4caf50;
  --hero-primary-overlay: rgba(0, 0, 0, 0.5);
  --hero-secondary-bg: #f6f7f9;

  --cta-action: #4aab3d;

  --products-card-header: #ffd23f;
  --products-count-bg: #4caf50;
  --products-offer-bg: #dff0d8;
  --products-offer-color: #3c763d;

  --footer-bg: #f9f9f9;

  --garay-200: #cccccc;

  --tooltip-bg: #e7e9eb;

  --blue-100: #cbdbee;
  --blue-600: #094aa8;
  --blue-900: #0d1329;

  --shadow-xs: 0px 0px 14px -1px rgba(0, 0, 0, 0.1);
  --card-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
  --card-shadow-hover: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  --products-card-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%),
    0 2px 10px 0 rgb(0 0 0 / 12%);
  --products-first-card-shadow: 0 2px 5px 0 #ffd23f,
    0 2px 10px 0 rgb(0 0 0 / 12%);
}

body {
  display: flex;
  flex-direction: column;
  background: var(--hero-secondary-bg);
  min-height: 100dvh;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-heading-font-family);
  font-weight: 500;
  color: var(--bs-heading-color);
}

p {
  font-size: 1.2em;
  line-height: 2rem;
}

.main {
  flex: 1;
  padding: 1rem 0;
}
.container-xl {
  padding: 0 1rem;
}
.mt-40 {
  margin-top: 1.5rem;
}
.stars {
  color: var(--star-color);
  font-size: 0.85rem;
}
.fw-medium {
  font-weight: 500;
}
.text-orange {
  color: #ff7c24;
}
.shadow-xs {
  box-shadow: var(--shadow-xs);
}

mark {
  font-weight: 700;
  background: yellow;
}

.cta-color {
  color: var(--cta-action) !important;
}
.cta-border {
  border-color: var(--cta-action) !important;
}

.heading-border {
  border-left: 4px solid green;
  padding-left: 1rem;
}

@media (min-width: 576px) {
  .mt-40 {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .mt-40 {
    margin-top: 2.5rem;
  }
  .main {
    padding-top: 0;
    margin-top: -5rem;
  }
  .card-shadow {
    box-shadow: var(--card-shadow);
    transition: shadow 0.25s ease;
  }
  .card-shadow:hover {
    box-shadow: var(--card-shadow-hover);
  }
}

@media (min-width: 992px) {
  .main {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 1.125rem;
  }
  .h2,
  h2 {
    font-size: 2.2rem;
  }
}

/* ============= Header Style =========== */
.header__nav {
  min-height: 78px;
  box-shadow: 0px 7px 18px #1810100d;
  backdrop-filter: blur(9px);
}

.header__nav-logo {
  max-width: 240px;
}

@media (min-width: 768px) {
  .header__nav-logo {
    max-width: 260px;
  }
}

@media (min-width: 992px) {
  .header__nav-logo {
    max-width: 280px;
  }
}

/* =============== Hero Style ============= */
.hero__primary {
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero__primary-overlay {
  background-color: var(--hero-primary-overlay);
}
.hero__primary-content {
  z-index: 2;
}
.hero__primary-subtitle {
  color: var(--hero-primary-subtitle);
}

.hero__secondary {
  background: var(--hero-secondary-bg);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.skip__list {
  gap: 0.5rem;
}
.skip__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 38px;
  background-color: var(--white);
  border: 2px solid white;
  border-radius: 100px;
  color: var(--cta-action);
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.25s all ease;
}
.skip__list li a:hover {
  background-color: var(--cta-action);
  color: var(--white);
}

.skip__list li:first-child a {
  background-color: var(--cta-action);
  border-color: var(--cta-action);
  color: var(--white);
}

@media (min-width: 500px) {
  .skip__list li a {
    width: 130px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (min-width: 576px) {
  .hero__secondary {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .stars {
    font-size: 1rem;
  }
  .skip__list {
    gap: 1rem;
  }
  .skip__list li a {
    width: 160px;
    height: 46px;
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero__primary {
    height: 400px;
    padding-bottom: 5rem;
  }
  .hero__secondary {
    padding-bottom: 7rem;
  }
  .skip__list li a {
    width: 180px;
    height: 50px;
  }
}

/* ============ Introduction Style =========== */
.checklist__list li {
  width: 100%;
}
.benefits__list li {
  width: 100%;
  padding: 0.5rem 0.75rem;
  color: var(--blue-900);
}

.benefits__list li h5 {
  font-size: 1rem;
}

.block-type-introduction ul {
  font-size: 1.2em;
}

.checklist__list-item {
  background-color: #f6f7f9;
}

.checklist__list-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
  background-color: var(--cta-action);
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
}

.checklist__list-row {
  background-color: #f6f7f9;
}
.checklist__list-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-height: 50px;
  background-color: var(--cta-action);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

@media (min-width: 576px) {
  .checklist__list-image {
    min-height: unset;
    min-width: 38px;
    width: 38px;
    border-radius: 0;
  }
  .benefits__list {
    justify-content: space-between;
  }
  .benefits__list li {
    width: calc(50% - 8px);
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 768px) {
  .benefits__list li h5 {
    font-size: 1.125rem;
  }
}

@media (min-width: 900px) {
  .block-type-introduction ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

@media (min-width: 992px) {
  .benefits__list {
    justify-content: flex-start;
  }
  .benefits__list li {
    width: calc(33.33% - 11px);
    padding: 0.75rem 1rem;
  }
  .checklist__list li {
    width: calc(50% - 8px);
  }
}

@media (min-width: 1200px) {
  .benefits__list li h5 {
    font-size: 1.25rem;
  }
  .checklist__list li {
    width: calc(50% - 12px);
  }
}

/* ========== Look For List Style ========= */
.lookfor__lists,
.lookfor__list {
  gap: 1rem;
}
.lookfor__lists li,
.lookfor__list li {
  width: 100%;
  background-color: #f6f7f9;
  padding: 1rem;
  border-radius: 15px;
}
.lookfor__list li p {
  margin-bottom: 0rem;
}
.lookfor__lists-label {
  min-width: 80px;
  height: 80px;
  background-color: #2f99e0;
  font-size: 64px;
  color: var(--white);
}

@media (min-width: 576px) {
  .lookfor__lists-label {
    min-width: 100px;
    height: 100px;
    font-size: 84px;
  }
}

@media (min-width: 768px) {
  .lookfor__list {
    gap: 1rem;
  }
  .lookfor__list li {
    max-width: calc(50% - 8px);
  }
}

@media (min-width: 992px) {
  .lookfor__lists li {
    max-width: calc(50% - 8px);
  }
}

/* ========== Evaluate Style =========== */
.evaluate-wrapper {
  max-width: 400px;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.evaluate__item-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--hero-secondary-bg);
}
.evaluate__item-image img {
  max-width: 65px;
  height: auto;
}
.evaluate__item h4 {
  font-size: 1rem;
}

.evaluate__tab {
  width: 100%;
  margin-top: 2rem;
}
.evaluate__tab .nav-item {
  display: flex;
  justify-content: center;
  width: calc(50% - 8px);
}
.evaluate__tab .nav-link {
  color: var(--bs-heading-color);
}
.evaluate__tab .nav-link.active {
  background-color: #dcdddd;
  color: #000;
}

.evaluate__tab-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--hero-secondary-bg);
}
.evaluate__tab-image img {
  max-width: 40px;
  height: auto;
}
.evaluate__tab-item h5 {
  color: inherit;
  font-size: 0.85rem;
  line-height: 1;
}

/* --- Evaluate Card ---- */
.evaluate__card {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.evaluate__card-icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: #ffcaa6;
  border-radius: 50%;
}

.evaluate__card-icon img {
  max-width: 60px;
  height: auto;
  vertical-align: middle;
}

@media (min-width: 576px) {
  .evaluate__item h4 {
    font-size: 1.125rem;
  }
  .evaluate__tab .nav-item {
    width: calc(25% - 12px);
  }
}

@media (min-width: 768px) {
  .evaluate-wrapper {
    max-width: 760px;
  }
  .evaluate__tab-image {
    width: 80px;
    height: 80px;
  }
  .evaluate__tab-image img {
    max-width: 50px;
  }
  .evaluate__tab-item h5 {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .evaluate__item h4 {
    font-size: 1.25rem;
  }
  .evaluate__tab-image {
    width: 80px;
    height: 80px;
  }
  .evaluate__tab-image img {
    max-width: 50px;
  }
  .evaluate__tab-item h5 {
    font-size: 1.125rem;
  }
}

/* ======== Indtroduction ========= */
.author__block {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}

.author__image {
  width: 60px;
  height: 60px;
}
.author__info {
  flex: 1;
}
.author__info p span {
  color: var(--cta-action);
}
.introduction__list li {
  background-color: rgba(133, 189, 255, 0.3);
  width: 100%;
  font-size: 0.875rem;
  color: var(--blue-900);
}

.author__name {
  line-height: 1rem;
}
.author__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
}
.author__social-twitter {
  background-color: #2f99e0;
}
.author__social-facebook {
  background-color: #3b5998;
}
.author__social-mail {
  background-color: #b3d2ca;
}

@media (min-width: 576px) {
  .introduction__list li {
    width: calc(50% - 8px);
  }
}

@media (min-width: 768px) {
  .introduction__list li {
    font-size: 1rem;
  }
}

/* ======== Bark Products Style ========= */
.products > .block-type-heading,
.products > .block-type-text {
  text-align: center;
}
.products > .block-type-text p {
  margin-bottom: 0;
}
.products__card {
  box-shadow: var(--products-card-shadow);
}
.products__card.first-choice {
  box-shadow: var(--products-first-card-shadow);
}
.products__card-header {
  background-color: var(--products-card-header);
}

.products__card-count {
  left: -15px;
  top: 15px;
  z-index: 2;
}
.products__card-count > img {
  width: 32px;
  height: auto;
}
.products__card-count-number {
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--products-count-bg);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
  line-height: 1;
  z-index: 4;
}
.products__card-review {
  border-bottom: 1px solid var(--garay-200);
}
.products__offer {
  border: 2px dashed var(--products-offer-color);
  background-color: var(--products-offer-bg);
  color: var(--products-offer-color);
  font-size: 0.9rem;
}

.products__offer-icon {
  max-width: 30px;
  animation: pulse 1.2s linear infinite;
}

.products__card-rating {
  font-size: 3rem;
}

.products__card-tooltip {
  background: var(--tooltip-bg);
  border-color: var(--tooltip-bg);
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  box-shadow: 3px 3px 5px var(--garay-200);
}
.products__card-tooltip::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  border-top: 20px solid var(--tooltip-bg);
  border-top-color: inherit;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .products__card-rating {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .products__card-count {
    left: -25px;
  }
  .products__card-count > img {
    width: 45px;
  }
  .products__card-count-number {
    width: 45px;
    height: 45px;
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .products__card-review {
    border: 1px solid var(--garay-200);
    border-top: none;
  }
}

/* ======== Smart Product Style ========= */
.smart-product__card {
  border: 2px solid #cccccc;
  padding-top: 1.5rem;
}
.smart-product__card.first-product {
  border-color: var(--cta-action);
  padding-top: 3rem;
}
.smart-product__card-label {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: 44;
}
.smart-product__card-link {
  color: var(--cta-action);
  transition: all 0.25s ease;
}
.smart-product__card-link:hover {
  color: var(--cta-action);
}
.smart-product__grade-divider {
  position: absolute;
  right: -8px;
  top: 2rem;
  width: 1px;
  border-right: 1px dashed #898989;
  height: calc(100% - 4rem);
}
.smart-product__grade-title {
  font-size: 30px;
}
.smart-product__grade-texts {
  font-size: 1rem !important;
}
.smart-product__image-img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.smart-product__ranking {
  width: 154px;
  height: 154px;
  position: relative;
}
.smart-product__ranking svg {
  position: relative;
  width: 154px;
  height: 154px;
}
.smart-product__ranking svg circle {
  width: 154px;
  height: 154px;
  fill: none;
  stroke-width: 12;
  transform: translate(8px, 8px);
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  stroke-linecap: round;
}
.smart-product__ranking svg circle:nth-child(1) {
  stroke-dashoffset: 0;
}

.smart-product__ranking-ranks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}

.smart-product__progress {
  background-color: #ededed;
  height: 6px;
  margin: 2px 0;
}
.smart-product__progress-inner {
  background-color: var(--cta-action);
  height: 100%;
}

.smart-product__card-cta {
  width: 100%;
}

@media (min-width: 768px) {
  .smart-product__card-cta {
    width: 400px;
  }
  .smart-product__image-img {
    max-width: 300px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .smart-product__grade-title {
    font-size: 36px;
  }
  .smart-product__grade-texts {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 992px) {
  .smart-product__card.first-product {
    padding-top: 1.5rem;
  }
  .smart-product__card-label {
    left: 1rem;
    top: -2.3rem;
    width: 200px;
    transform: translate(0, 0);
  }
  .smart-product__grade-title {
    font-size: 120px;
  }
  .smart-product__image-img {
    max-width: 100%;
    max-height: unset;
  }
  .smart-product__card-cta {
    width: 500px;
  }
}

/* ======== Balanced Product Style ========= */
.balanced-products-wrapper {
  max-width: 880px;
}
.balanced__card {
  border: 2px solid #cccccc;
}
.balanced__card.first-choice {
  border-color: var(--products-card-header);
}
.balanced__card-label {
  right: -0.75rem;
  top: 0;
  width: 100px;
  transform: translateY(-50%);
  z-index: 44;
}
.balanced__card-img {
  max-width: 540px;
  width: 100%;
  height: auto;
}
.balanced__card-stars {
  font-size: 30px;
  color: var(--star-color);
}

@media (min-width: 576px) {
  .balanced__card-label {
    width: 140px;
  }
  .balanced__card-stars {
    right: 0;
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .balanced__card-label {
    width: 160px;
    transform: translateY(-40%);
  }
}

@media (min-width: 992px) {
  .balanced__card-label {
    right: -100px;
    width: 200px;
  }
}

/* =========== Toplinker Style =========== */
.toplinker {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: block;
  background: var(--cta-action);
  border: 4px solid var(--white);
  border-radius: 3rem;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
  transition: 0.25s all ease-in-out;
  transform: translateY(1.5rem);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.toplinker::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px solid var(--cta-action);
  border-radius: 3rem;
  transition: 0.25s all ease-in-out;
}
.toplinker.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.toplinker:hover {
  color: var(--white);
}
.toplinker:hover::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {
  .toplinker {
    font-weight: 600;
    padding: 1rem 1.5rem;
  }
}

/* =========== Reminder Style =========== */
.reminder {
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--white);
  width: 100%;
  transition: 0.25s all ease;
  transform: translateY(1.5rem);
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.reminder.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reminder__image {
  min-width: 22%;
  width: 22%;
  background-color: var(--white);
  padding: 4px;
}

.reminder__content {
  padding: 1rem 0.5rem;
  /* min-width: 250px;
  width: 250px; */
}

@media (min-width: 385px) {
  .reminder__image {
    min-width: 130px;
    width: 130px;
  }
}

@media (min-width: 400px) {
  .reminder__image {
    min-width: 140px;
    width: 140px;
  }
}

@media (min-width: 576px) {
  .reminder {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 440px;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .reminder__image {
    min-width: 160px;
    width: 160px;
    padding: 8px;
  }
  .reminder__content {
    padding: 1rem;
  }
}

/* =========== Exit Modal Style =========== */
.exit-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
.exit-backdrop.show {
  visibility: visible;
  opacity: 1;
}

.exit-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
  animation: fadeIn 1s;
  z-index: 1000;
}
.exit-modal.show {
  display: block;
}

.exit-modal-wrapper {
  width: 300px;
  z-index: -1;
  animation: fadeInFromTop 1s;
}

.exit-modal__btn {
  top: -12px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background-color: #202020;
  border-radius: 50%;
  padding: 0;
  padding-top: 1px;
}
.exit-modal__content {
  width: 100%;
}
.exit-modal__content-logo {
  max-width: 250px;
  max-height: 56px;
  object-fit: cover;
}
.exit-modal__content-pill {
  background: var(--blue-600);
}

.exit-modal__content-btn {
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: var(--cta-action);
  color: var(--white);
  border-radius: 0.375rem;
  padding: 0.5rem 2rem;
  transition: all 0.25s ease;
}
.exit-modal__content-btn:hover {
  background-color: #3e9b31;
  color: var(--white);
}

@media (min-width: 340px) {
  .exit-modal-wrapper {
    width: 320px;
  }
}
@media (min-width: 768px) {
  .exit-modal-wrapper {
    width: 680px;
  }
  .exit-modal__btn {
    top: 22px;
    right: 12px;
    color: #202020;
    background-color: #fff;
  }
  .exit-modal__content {
    min-width: 50%;
    width: 50%;
  }
}
/* =========== Footer Style =========== */
.footer {
  background-color: var(--footer-bg);
}
.footer__copyright {
  border-top: 1px solid var(--garay-200);
  margin-top: 32px;
}

/* ======== Animations ========= */
@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInFromTop {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ======== Buyers Guide Style ========= */
.buyers-guide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.buyers-guide__main {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.buyers-guide__main > div {
  max-width: 100%;
}

.buyers-guide__main .block-type-image {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem; /* Added margin-bottom */
}

.buyers-guide__main .block-type-image figure {
  margin: 0 0 1rem 0; /* Adds space below the figure, but not on top or sides */
}

.buyers-guide__main .block-type-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem; /* Adds space directly under the image */
}

.buyers-guide__sidebar {
  width: 100%;
}

@media (min-width: 992px) {
  .buyers-guide {
    flex-direction: row;
    align-items: flex-start;
  }

  .buyers-guide__main {
    width: 70%;
    padding-right: 2rem;
    box-sizing: border-box;
  }

  .buyers-guide__sidebar {
    width: 30%;
    position: sticky;
    top: 20px; /* Adjust this value as needed */
    align-self: flex-start;
    max-height: calc(100vh - 40px); /* Adjust based on your needs */
    overflow-y: auto;
    border: 1px solid #e0e0e0; /* Adjust the color as needed */
    padding: 1rem;
    background-color: #f9f9f9; /* Adjust the background color as needed */
    text-align: center; /* Center the text */
  }

  .buyers-guide__sidebar h2,
  .buyers-guide__sidebar h3,
  .buyers-guide__sidebar p {
    text-align: center; /* Ensure all text elements are centered */
  }

  .buyers-guide__sidebar .btn {
    display: block; /* Make the button full width */
    margin: 1rem auto; /* Center the button and add vertical spacing */
  }
}

/* Add these utility classes if they're not already in your CSS */
.mt-5 {
  margin-top: 3rem;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--cta-action);
  border-color: var(--cta-action);
}

.btn-primary:hover {
  background-color: #3e9b31;
  border-color: #3e9b31;
}

.post-meta {
  font-size: 0.9rem;
}

.author-img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.stars-img {
  height: 16px;
  width: auto;
}

.full-width-image-container {
  max-width: 100%;
  overflow: hidden;
}

.full-width-image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .post-meta--wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-meta--wrapper > div {
    margin-top: 0.5rem;
  }
}

/* Add this to your existing styles */

.buyers-guide__header .full-width-image-container {
  margin-bottom: 2rem; /* Increase this value if you need more space */
}

.buyers-guide__header .full-width-image-container img {
  display: block; /* Removes any potential inline spacing */
  margin-bottom: 0; /* Ensures no extra space below the image itself */
}

/* Add spacing after the buyers-guide__header */
.buyers-guide__header {
  margin-bottom: 2rem; /* Adjust this value as needed */
}

/* Add this new section for buyers guide headings */
.buyers-guide__main h2,
.buyers-guide__main h3 {
  margin-bottom: 1.5rem; /* Increase this value for a bigger gap */
}

/* Adjust top margin for h2 and h3 that are not the first child */
.buyers-guide__main h2:not(:first-child),
.buyers-guide__main h3:not(:first-child) {
  margin-top: 2rem; /* Adjust this value as needed */
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInFromTop {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ======== Buyers Guide Style ========= */
.buyers-guide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.buyers-guide__main {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.buyers-guide__main > div {
  max-width: 100%;
}

.buyers-guide__main .block-type-image {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem; /* Added margin-bottom */
}

.buyers-guide__main .block-type-image figure {
  margin: 0 0 1rem 0; /* Adds space below the figure, but not on top or sides */
}

.buyers-guide__main .block-type-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem; /* Adds space directly under the image */
}

.buyers-guide__sidebar {
  width: 100%;
}

@media (min-width: 992px) {
  .buyers-guide {
    flex-direction: row;
    align-items: flex-start;
  }

  .buyers-guide__main {
    width: 70%;
    padding-right: 2rem;
    box-sizing: border-box;
  }

  .buyers-guide__sidebar {
    width: 30%;
    position: sticky;
    top: 20px; /* Adjust this value as needed */
    align-self: flex-start;
    max-height: calc(100vh - 40px); /* Adjust based on your needs */
    overflow-y: auto;
    border: 1px solid #e0e0e0; /* Adjust the color as needed */
    padding: 1rem;
    background-color: #f9f9f9; /* Adjust the background color as needed */
    text-align: center; /* Center the text */
  }

  .buyers-guide__sidebar h2,
  .buyers-guide__sidebar h3,
  .buyers-guide__sidebar p {
    text-align: center; /* Ensure all text elements are centered */
  }

  .buyers-guide__sidebar .btn {
    display: block; /* Make the button full width */
    margin: 1rem auto; /* Center the button and add vertical spacing */
  }
}

/* Add these utility classes if they're not already in your CSS */
.mt-5 {
  margin-top: 3rem;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--cta-action);
  border-color: var(--cta-action);
}

.btn-primary:hover {
  background-color: #3e9b31;
  border-color: #3e9b31;
}

.post-meta {
  font-size: 0.9rem;
}

.author-img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.stars-img {
  height: 16px;
  width: auto;
}

.full-width-image-container {
  max-width: 100%;
  overflow: hidden;
}

.full-width-image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .post-meta--wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-meta--wrapper > div {
    margin-top: 0.5rem;
  }
}

/* Add this to your existing styles */

.buyers-guide__header .full-width-image-container {
  margin-bottom: 2rem; /* Increase this value if you need more space */
}

.buyers-guide__header .full-width-image-container img {
  display: block; /* Removes any potential inline spacing */
  margin-bottom: 0; /* Ensures no extra space below the image itself */
}

/* Add spacing after the buyers-guide__header */
.buyers-guide__header {
  margin-bottom: 2rem; /* Adjust this value as needed */
}

@media (min-width: 768px) {
  .smart-product__card-cta {
    width: 400px;
  }
  .smart-product__image-img {
    max-width: 300px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .smart-product__grade-title {
    font-size: 36px;
  }
  .smart-product__grade-texts {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 992px) {
  .smart-product__card.first-product {
    padding-top: 1.5rem;
  }
  .smart-product__card-label {
    left: 1rem;
    top: -2.3rem;
    width: 200px;
    transform: translate(0, 0);
  }
  .smart-product__grade-title {
    font-size: 120px;
  }
  .smart-product__image-img {
    max-width: 100%;
    max-height: unset;
  }
  .smart-product__card-cta {
    width: 500px;
  }
}

/* ======== Balanced Product Style ========= */
.balanced-products-wrapper {
  max-width: 880px;
}
.balanced__card {
  border: 2px solid #cccccc;
}
.balanced__card.first-choice {
  border-color: var(--products-card-header);
}
.balanced__card-label {
  right: -0.75rem;
  top: 0;
  width: 100px;
  transform: translateY(-50%);
  z-index: 44;
}
.balanced__card-img {
  max-width: 540px;
  width: 100%;
  height: auto;
}
.balanced__card-stars {
  font-size: 30px;
  color: var(--star-color);
}

@media (min-width: 576px) {
  .balanced__card-label {
    width: 140px;
  }
  .balanced__card-stars {
    right: 0;
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .balanced__card-label {
    width: 160px;
    transform: translateY(-40%);
  }
}

@media (min-width: 992px) {
  .balanced__card-label {
    right: -100px;
    width: 200px;
  }
}

/* =========== Toplinker Style =========== */
.toplinker {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: block;
  background: var(--cta-action);
  border: 4px solid var(--white);
  border-radius: 3rem;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
  transition: 0.25s all ease-in-out;
  transform: translateY(1.5rem);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.toplinker::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px solid var(--cta-action);
  border-radius: 3rem;
  transition: 0.25s all ease-in-out;
}
.toplinker.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.toplinker:hover {
  color: var(--white);
}
.toplinker:hover::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {
  .toplinker {
    font-weight: 600;
    padding: 1rem 1.5rem;
  }
}

/* =========== Reminder Style =========== */
.reminder {
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--white);
  width: 100%;
  transition: 0.25s all ease;
  transform: translateY(1.5rem);
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.reminder.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reminder__image {
  min-width: 22%;
  width: 22%;
  background-color: var(--white);
  padding: 4px;
}

.reminder__content {
  padding: 1rem 0.5rem;
  /* min-width: 250px;
  width: 250px; */
}

@media (min-width: 385px) {
  .reminder__image {
    min-width: 130px;
    width: 130px;
  }
}

@media (min-width: 400px) {
  .reminder__image {
    min-width: 140px;
    width: 140px;
  }
}

@media (min-width: 576px) {
  .reminder {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 440px;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .reminder__image {
    min-width: 160px;
    width: 160px;
    padding: 8px;
  }
  .reminder__content {
    padding: 1rem;
  }
}

/* =========== Exit Modal Style =========== */
.exit-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
.exit-backdrop.show {
  visibility: visible;
  opacity: 1;
}

.exit-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
  animation: fadeIn 1s;
  z-index: 1000;
}
.exit-modal.show {
  display: block;
}

.exit-modal-wrapper {
  width: 300px;
  z-index: -1;
  animation: fadeInFromTop 1s;
}

.exit-modal__btn {
  top: -12px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background-color: #202020;
  border-radius: 50%;
  padding: 0;
  padding-top: 1px;
}
.exit-modal__content {
  width: 100%;
}
.exit-modal__content-logo {
  max-width: 250px;
  max-height: 56px;
  object-fit: cover;
}
.exit-modal__content-pill {
  background: var(--blue-600);
}

.exit-modal__content-btn {
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: var(--cta-action);
  color: var(--white);
  border-radius: 0.375rem;
  padding: 0.5rem 2rem;
  transition: all 0.25s ease;
}
.exit-modal__content-btn:hover {
  background-color: #3e9b31;
  color: var(--white);
}

@media (min-width: 340px) {
  .exit-modal-wrapper {
    width: 320px;
  }
}
@media (min-width: 768px) {
  .exit-modal-wrapper {
    width: 680px;
  }
  .exit-modal__btn {
    top: 22px;
    right: 12px;
    color: #202020;
    background-color: #fff;
  }
  .exit-modal__content {
    min-width: 50%;
    width: 50%;
  }
}
/* =========== Footer Style =========== */
.footer {
  background-color: var(--footer-bg);
}
.footer__copyright {
  border-top: 1px solid var(--garay-200);
  margin-top: 32px;
}

/* ======== Animations ========= */
@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInFromTop {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ======== Buyers Guide Style ========= */
.buyers-guide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.buyers-guide__main {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.buyers-guide__main > div {
  max-width: 100%;
}

.buyers-guide__main .block-type-image {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem; /* Added margin-bottom */
}

.buyers-guide__main .block-type-image figure {
  margin: 0 0 1rem 0; /* Adds space below the figure, but not on top or sides */
}

.buyers-guide__main .block-type-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem; /* Adds space directly under the image */
}

.buyers-guide__sidebar {
  width: 100%;
}

@media (min-width: 992px) {
  .buyers-guide {
    flex-direction: row;
    align-items: flex-start;
  }

  .buyers-guide__main {
    width: 70%;
    padding-right: 2rem;
    box-sizing: border-box;
  }

  .buyers-guide__sidebar {
    width: 30%;
    position: sticky;
    top: 20px; /* Adjust this value as needed */
    align-self: flex-start;
    max-height: calc(100vh - 40px); /* Adjust based on your needs */
    overflow-y: auto;
    border: 1px solid #e0e0e0; /* Adjust the color as needed */
    padding: 1rem;
    background-color: #f9f9f9; /* Adjust the background color as needed */
    text-align: center; /* Center the text */
  }

  .buyers-guide__sidebar h2,
  .buyers-guide__sidebar h3,
  .buyers-guide__sidebar p {
    text-align: center; /* Ensure all text elements are centered */
  }

  .buyers-guide__sidebar .btn {
    display: block; /* Make the button full width */
    margin: 1rem auto; /* Center the button and add vertical spacing */
  }
}

/* Add these utility classes if they're not already in your CSS */
.mt-5 {
  margin-top: 3rem;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--cta-action);
  border-color: var(--cta-action);
}

.btn-primary:hover {
  background-color: #3e9b31;
  border-color: #3e9b31;
}

.post-meta {
  font-size: 0.9rem;
}

.author-img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.stars-img {
  height: 16px;
  width: auto;
}

.full-width-image-container {
  max-width: 100%;
  overflow: hidden;
}

.full-width-image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .post-meta--wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-meta--wrapper > div {
    margin-top: 0.5rem;
  }
}

/* Add this to your existing styles */

.buyers-guide__header .full-width-image-container {
  margin-bottom: 2rem; /* Increase this value if you need more space */
}

.buyers-guide__header .full-width-image-container img {
  display: block; /* Removes any potential inline spacing */
  margin-bottom: 0; /* Ensures no extra space below the image itself */
}

/* Add spacing after the buyers-guide__header */
.buyers-guide__header {
  margin-bottom: 2rem; /* Adjust this value as needed */
}

@media (min-width: 768px) {
  .smart-product__card-cta {
    width: 400px;
  }
  .smart-product__image-img {
    max-width: 300px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .smart-product__grade-title {
    font-size: 36px;
  }
  .smart-product__grade-texts {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 992px) {
  .smart-product__card.first-product {
    padding-top: 1.5rem;
  }
  .smart-product__card-label {
    left: 1rem;
    top: -2.3rem;
    width: 200px;
    transform: translate(0, 0);
  }
  .smart-product__grade-title {
    font-size: 120px;
  }
  .smart-product__image-img {
    max-width: 100%;
    max-height: unset;
  }
  .smart-product__card-cta {
    width: 500px;
  }
}

/* ======== Balanced Product Style ========= */
.balanced-products-wrapper {
  max-width: 880px;
}
.balanced__card {
  border: 2px solid #cccccc;
}
.balanced__card.first-choice {
  border-color: var(--products-card-header);
}
.balanced__card-label {
  right: -0.75rem;
  top: 0;
  width: 100px;
  transform: translateY(-50%);
  z-index: 44;
}
.balanced__card-img {
  max-width: 540px;
  width: 100%;
  height: auto;
}
.balanced__card-stars {
  font-size: 30px;
  color: var(--star-color);
}

@media (min-width: 576px) {
  .balanced__card-label {
    width: 140px;
  }
  .balanced__card-stars {
    right: 0;
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .balanced__card-label {
    width: 160px;
    transform: translateY(-40%);
  }
}

@media (min-width: 992px) {
  .balanced__card-label {
    right: -100px;
    width: 200px;
  }
}

/* =========== Toplinker Style =========== */
.toplinker {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: block;
  background: var(--cta-action);
  border: 4px solid var(--white);
  border-radius: 3rem;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
  transition: 0.25s all ease-in-out;
  transform: translateY(1.5rem);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.toplinker::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px solid var(--cta-action);
  border-radius: 3rem;
  transition: 0.25s all ease-in-out;
}
.toplinker.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.toplinker:hover {
  color: var(--white);
}
.toplinker:hover::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {
  .toplinker {
    font-weight: 600;
    padding: 1rem 1.5rem;
  }
}

/* =========== Reminder Style =========== */
.reminder {
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--white);
  width: 100%;
  transition: 0.25s all ease;
  transform: translateY(1.5rem);
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.reminder.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reminder__image {
  min-width: 22%;
  width: 22%;
  background-color: var(--white);
  padding: 4px;
}

.reminder__content {
  padding: 1rem 0.5rem;
  /* min-width: 250px;
  width: 250px; */
}

@media (min-width: 385px) {
  .reminder__image {
    min-width: 130px;
    width: 130px;
  }
}

@media (min-width: 400px) {
  .reminder__image {
    min-width: 140px;
    width: 140px;
  }
}

@media (min-width: 576px) {
  .reminder {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 440px;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .reminder__image {
    min-width: 160px;
    width: 160px;
    padding: 8px;
  }
  .reminder__content {
    padding: 1rem;
  }
}

/* =========== Exit Modal Style =========== */
.exit-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
.exit-backdrop.show {
  visibility: visible;
  opacity: 1;
}

.exit-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
  animation: fadeIn 1s;
  z-index: 1000;
}
.exit-modal.show {
  display: block;
}

.exit-modal-wrapper {
  width: 300px;
  z-index: -1;
  animation: fadeInFromTop 1s;
}

.exit-modal__btn {
  top: -12px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background-color: #202020;
  border-radius: 50%;
  padding: 0;
  padding-top: 1px;
}
.exit-modal__content {
  width: 100%;
}
.exit-modal__content-logo {
  max-width: 250px;
  max-height: 56px;
  object-fit: cover;
}
.exit-modal__content-pill {
  background: var(--blue-600);
}

.exit-modal__content-btn {
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: var(--cta-action);
  color: var(--white);
  border-radius: 0.375rem;
  padding: 0.5rem 2rem;
  transition: all 0.25s ease;
}
.exit-modal__content-btn:hover {
  background-color: #3e9b31;
  color: var(--white);
}

@media (min-width: 340px) {
  .exit-modal-wrapper {
    width: 320px;
  }
}
@media (min-width: 768px) {
  .exit-modal-wrapper {
    width: 680px;
  }
  .exit-modal__btn {
    top: 22px;
    right: 12px;
    color: #202020;
    background-color: #fff;
  }
  .exit-modal__content {
    min-width: 50%;
    width: 50%;
  }
}
/* =========== Footer Style =========== */
.footer {
  background-color: var(--footer-bg);
}
.footer__copyright {
  border-top: 1px solid var(--garay-200);
  margin-top: 32px;
}

/* ======== Animations ========= */
@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInFromTop {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ======== Buyers Guide Style ========= */
.buyers-guide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.buyers-guide__main {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.buyers-guide__main > div {
  max-width: 100%;
}

.buyers-guide__main .block-type-image {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem; /* Added margin-bottom */
}

.buyers-guide__main .block-type-image figure {
  margin: 0 0 1rem 0; /* Adds space below the figure, but not on top or sides */
}

.buyers-guide__main .block-type-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem; /* Adds space directly under the image */
}

.buyers-guide__sidebar {
  width: 100%;
}

@media (min-width: 992px) {
  .buyers-guide {
    flex-direction: row;
    align-items: flex-start;
  }

  .buyers-guide__main {
    width: 70%;
    padding-right: 2rem;
    box-sizing: border-box;
  }

  .buyers-guide__sidebar {
    width: 30%;
    position: sticky;
    top: 20px; /* Adjust this value as needed */
    align-self: flex-start;
    max-height: calc(100vh - 40px); /* Adjust based on your needs */
    overflow-y: auto;
    border: 1px solid #e0e0e0; /* Adjust the color as needed */
    padding: 1rem;
    background-color: #f9f9f9; /* Adjust the background color as needed */
    text-align: center; /* Center the text */
  }

  .buyers-guide__sidebar h2,
  .buyers-guide__sidebar h3,
  .buyers-guide__sidebar p {
    text-align: center; /* Ensure all text elements are centered */
  }

  .buyers-guide__sidebar .btn {
    display: block; /* Make the button full width */
    margin: 1rem auto; /* Center the button and add vertical spacing */
  }
}

/* Add these utility classes if they're not already in your CSS */
.mt-5 {
  margin-top: 3rem;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--cta-action);
  border-color: var(--cta-action);
}

.btn-primary:hover {
  background-color: #3e9b31;
  border-color: #3e9b31;
}

.post-meta {
  font-size: 0.9rem;
}

.author-img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.stars-img {
  height: 16px;
  width: auto;
}

.full-width-image-container {
  max-width: 100%;
  overflow: hidden;
}

.full-width-image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .post-meta--wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-meta--wrapper > div {
    margin-top: 0.5rem;
  }
}

/* Add this to your existing styles */

.buyers-guide__header .full-width-image-container {
  margin-bottom: 2rem; /* Increase this value if you need more space */
}

.buyers-guide__header .full-width-image-container img {
  display: block; /* Removes any potential inline spacing */
  margin-bottom: 0; /* Ensures no extra space below the image itself */
}

/* Add spacing after the buyers-guide__header */
.buyers-guide__header {
  margin-bottom: 2rem; /* Adjust this value as needed */
}

@media (min-width: 768px) {
  .smart-product__card-cta {
    width: 400px;
  }
  .smart-product__image-img {
    max-width: 300px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .smart-product__grade-title {
    font-size: 36px;
  }
  .smart-product__grade-texts {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 992px) {