@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: 'Poppins', sans-serif;
  line-height: 1.5;
  color: #2e2a39;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.font-bold {
  font-weight: 700;
}

/* Colors */
:root {
  --primary: #d2b2d7;
  --primary-dark: #6d388b;
  --accent: #d2b2d7;
  --text-dark: #2e2a39;
  --text-light: #ffffff;
  --bg-light: #f3f3f3;
  --bg-pink: #fff5f6;
  --star-color: #ffcc00;
}
strong {
  font-weight: 500;
}
/* -------------------- COOKIE BANNER -------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}
.cookie-banner button {
  background: var(--primary);
  border: none;
  color: #2e2a39;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: 0.2s;
}
.cookie-banner button:hover {
  background: #c09ec7;
}

/* -------------------- FLOATING SIDEBAR -------------------- */
.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 290px;
  max-width: 90vw;
  background: #ffffff;
  border: 1px solid #ababab;
  border-right: none;
  padding: 15px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
  max-height: 90vh;
  display: block;
}
main {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.sidebar-title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  margin-bottom: 10px;
}
.comparison-table td:nth-child(2) {
  background: #d2b2d7;
    color: #000000;
}
.table-icon {
  display: block;
}
.rating-stars-sidebar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
.rating-stars-sidebar img {
  max-width: 100px;
  height: auto;
}
.rating-text-sidebar {
  text-align: center;
  color: #8a8a8a;
  font-size: 14px;
  margin-bottom: 15px;
}

.product-image-sidebar {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #000000;
  font-size: 14px;
}
.feature-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.cta-button {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #D2B2D7;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #c09ec7;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .floating-sidebar {
    display: none;
  }
}

/* -------------------- HEADER (Logo Only) -------------------- */
.site-header {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}
.logo-wrapper {
  text-align: center;
}
.logo-wrapper img {
  height: 35px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* -------------------- SECTIONS SPACING -------------------- */
section {
  padding: 40px 0;
}
.section-bg-gray {
  background: #f0f2f1;
}
.section-bg-pink {
  background: #fff5f6;
}
.section-bg-light {
  background: #f3f3f3;
}

/* -------------------- TYPOGRAPHY -------------------- */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #2e2a39;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 40px;
  transition: 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-align: center;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-primary {
  background: #d2b2d7;
  color: white;
}
.btn-primary:hover {
  background: #6d388b;
}

/* -------------------- RATING STARS -------------------- */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.stars {
  color: var(--star-color);
  letter-spacing: 2px;
  font-size: 1.2rem;
}
.rating-text {
  margin-left: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* -------------------- UTILITY GRID -------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
    .grid-3 {
      grid-template-columns: 1fr 1fr 1fr;
    }
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------- TICKER -------------------- */
.ticker-wrap {
  background: var(--primary);
  color: #2e2a39;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-weight: 500;
  font-size: 1rem;
}
.ticker-content span {
  margin: 0 40px;
  color: #fff;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* -------------------- FEATURE BLOCKS -------------------- */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
}
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}
.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

/* -------------------- COMPARISON TABLE -------------------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.comparison-table th {
  background: var(--primary);
  padding: 16px 12px;
  font-weight: 700;
  color: #2e2a39;
  text-align: center;
}
.comparison-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
  vertical-align: middle;
}
.comparison-table td:first-child {
  font-weight: 600;
  text-align: left;
}
.table-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 5px;
}

/* -------------------- STEPS -------------------- */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.step-item {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
}
.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
}

/* -------------------- STICKY CTA (Mobile Simulation) -------------------- */
.sticky-cta-bar {
  background: var(--primary);
  padding: 15px;
  border-radius: 12px;
  margin-top: 20px;
}

/* -------------------- FOOTER -------------------- */
.footer {
  background: var(--accent);
  color: #fff;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer li {
  margin-bottom: 8px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.payment-icons svg {
  width: 38px;
  height: 24px;
}

/* -------------------- MISC -------------------- */
.badge-bg {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 16px;
}
.mt-2 {
  margin-top: 20px;
}
.mb-2 {
  margin-bottom: 20px;
}
.py-4 {
  padding: 40px 0;
}
.gap-20 {
  gap: 20px;
}
.w-100 {
  width: 100%;
}
.rounded {
  border-radius: 12px;
}
.object-cover {
  object-fit: cover;
}