@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-VariableFont_wght.otf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  color: #222;
  background-color: #f6f6f6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #d13030;
  text-decoration: none;
  cursor: pointer;
}

b,
strong {
  font-weight: 700;
}

/* Layout Grid */
.outer-wrapper {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-grid {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 55px 27px 0 55px;
}

.content-col {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
  padding-right: 25px;
}

.sidebar-col {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/* Typography */
h1 {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  margin: 30px 0 10px;
}

h3 {
  font-size: 24px;
  font-weight: 900;
  color: #d13030;
  margin: 25px 0 10px;
}

p {
  margin-bottom: 1rem;
  font-size: 16px;
}

/* Header */
.top-bar {
  background: #222;
  color: #fff;
  padding: 13px 15px 11px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
}

.advert-label {
  text-align: center;
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  background: #fff;
}

.brand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  max-width: 1152px;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.logo span {
  color: #d13030;
}

.trending-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}

.trending-badge img {
  width: 27px;
  height: 16px;
}

/* Content Elements */
.timestamp {
  font-size: 14px;
  padding: 10px 0;
  color: #555;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  padding: 12px 10px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.author-block img.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  background: #ffd712;
  color: #000 !important;
  font-weight: 700;
  font-size: 24px;
  padding: 17px 30px;
  border-radius: 4px;
  text-align: center;
  margin: 20px 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
}

/* Sidebar Styles */
.sidebar-product {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 15px;
  padding: 12px 10px;
  width: 100%;
  max-width: 245px;
  margin: 20px 0;
}

.sidebar-title {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  font-size: 16px;
}

.rating-row .stars {
  height: 20px;
  width: auto;
}

.review-card {
  display: flex;
  background: #ededed;
  padding: 12px 10px;
  margin-top: 20px;
  gap: 20px;
}

.trust-badges {
  display: flex;
  justify-content: space-around;
  background: #fef8b7;
  padding: 12px 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
  gap: 16px;
}

.highlight-box {
  background: #fefbdb;
  padding: 12px 10px;
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

/* Sticky Bar */
.stickyBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  z-index: 999;
  display: none;
  text-align: center;
}

.stickyBar a {
  background: #ffd712;
  color: #000 !important;
  font-weight: 700;
  font-size: 27px;
  padding: 17px 40px;
  border-radius: 4px;
  display: inline-block;
  width: 90%;
  max-width: 659px;
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 40px;
  text-align: center;
  color: #566b78;
  font-size: 14px;
}

footer a {
  color: #566b78;
  margin: 0 10px;
}

/* Utility */
.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.gap-10 {
  gap: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.w-100 {
  width: 100%;
}

/* Responsive */
@media (max-width: 1088px) {
  .main-grid {
    padding: 55px 27px 0;
  }

  .content-col,
  .sidebar-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .sidebar-product {
    max-width: 100%;
  }
}
.outer-wrapper img {
  margin: 10px 0;
}
@media (max-width: 768px) {
  .content-col h1 {
    font-size: 28px;
  }

  .cta-button {
    font-size: 20px;
  }
  .highlight-box {
    flex-direction: column;
  }
  .trust-badges {
    flex-direction: column;
  }
  .review-card div {
    flex-direction: column;
  }
    .main-grid {
      padding: 40px 16px;
    }
}