/* Basic Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

a {
  color: #405cb3;
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  color: #1139b5;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

/* Header */
.header-upper {
  background-color: #344a5f;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  text-align: center;
  padding: 5px 0;
  text-transform: uppercase;
}

.logo-container--wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 30px;
  margin-right: 10px;
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.product-name {
  color: #1582c5;
  font-size: 18px;
  margin-left: 10px;
}

.trending-country {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trending-country img {
  width: 30px;
}

/* Content Layout */
.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

article {
  max-width: calc(100% - 280px);
  width: 100%;
}

aside {
  width: 250px;
  position: sticky;
  top: 10px;
  align-self: flex-start;
  border: 1px solid #f1f1f1;
  padding: 10px;
}

@media (max-width: 920px) {
  article {
    max-width: 100%;
  }

  aside {
    display: none;
  }
}

/* Post Meta */
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  color: #555;
  font-size: 0.9rem;
}

.author-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 5px;
}

.stars-img {
  width: 100px;
  height: auto;
}

.trending-counter {
  text-align: right;
}

/* Attention Bar */
.attention-bar {
  background: #fff7e5;
  border: 2px dashed #b85a12;
  padding: 15px;
  text-align: center;
  margin: 15px 0;
  font-size: 1.1rem;
}

/* Buttons */
.button {
  display: block;
  background: #0bac4b;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 16px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 0 #04461e;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.2s;
  font-size: 1.2rem;
}

.button:hover {
  background: #067131;
  color: white;
}

.button-sidebar {
  font-size: 1rem;
  padding: 12px;
}

.button svg {
  height: 18px;
  fill: white;
  vertical-align: middle;
  margin-left: 8px;
}

/* Features List */
.features-container {
  background: #fbfbfb;
  border: 1px solid #f1f1f1;
  padding: 20px;
  margin: 20px 0;
}

.features-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.features-row svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  color: #16c60c;
  flex-shrink: 0;
}

.list-item-content {
  margin-bottom: 0;
}

/* Coupon Box */
.coupon {
  background: #fff7e5;
  border: 3px dashed #000;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
}

/* Comments */
.comment-section {
  margin-top: 20px;
}

.comment {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.profile-pic img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.section {
  flex: 1;
}

.name-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.username {
  font-weight: 700;
  color: #3658a6;
}

.user_location {
  color: #999;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.user_location img.flag {
  width: 18px;
  height: auto;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.facebook-button {
  background: none;
  border: none;
  color: #3658a6;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.like-btn-count {
  display: flex;
  align-items: center;
  gap: 5px;
}

.like-icon {
  width: 16px;
  height: 16px;
}

/* Footer */
#footer {
  background: #121212;
  color: #aaa;
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
}

#footer a {
  color: #ddd;
  margin: 0 10px;
}

#footer .divider {
  margin: 0 5px;
  color: #555;
}

#floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 30;
  display: none;
}

#floating-cta.show {
  display: block;
}

.desktop-only {
  display: inline;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.my-15px {
  margin: 15px 0;
}

.mt-25px {
  margin-top: 25px;
}

.mb-5px {
  margin-bottom: 5px;
}

.p-15px {
  padding: 15px;
}

.w-full {
  width: 100%;
}
.customer-ratings {
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  position: relative;
  background-color: #fafafa;
  margin: 20px 0;
  padding: 15px;
}

.rating-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.rating-left {
  width: 100%;
  text-align: left;
}

.rating-right {
  width: 100%;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .rating-left {
    width: 70%;
  }

  .rating-right {
    width: 25%;
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
  }
}

.h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #2d2d2d;
}

.rating-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.overall-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 18px;
}

.rating-score {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.stars-img {
  width: 110px;
  height: auto;
}

.rating-text {
  font-size: 17px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}

.rating-logo {
  width: 30px;
  height: auto;
}

.blog-title-rating {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #000;
}
.stats--wrapper {
  display: grid;
  grid-template-columns: 3fr minmax(17%, 0.5fr);
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  align-items: center;
  background-color: #efefef;
  padding: 15px;
  border-radius: 3px;
  margin-top: 10px;
}

.bar-container {
  width: 100%;
}

.bar {
  background-color: #c5c5c5;
  border-radius: 15px;
  color: #fff;
  height: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bar-fill {
  background-color: #195ca3;
  border-radius: 15px;
  height: 100%;
  width: 0%;
  position: relative;
}

.bar-fill::before {
  content: attr(data-value);
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  width: 20px;
  z-index: 2;
}

.bar[data-light="true"] .bar-fill::before {
  color: #333;
}

.category-name {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 640px) {
  .stats--wrapper {
    grid-template-columns: 1fr 0.3fr;
    grid-row-gap: 12px;
  }

  .bar {
    height: 15px;
  }

  .bar-fill::before {
    font-size: 12px;
    left: -20px;
  }

  .category-name {
    font-size: 15px;
  }
}