
/* Global font variable - controls all text on the page */
:root {
  --primary-font: 'Cairo', sans-serif;
}

/* xs */

/* sm */

/* md */

/* lg */

/* xl */

/* 2xl */




body {

  body {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
  }

}




main {

  justify-content: center;
  align-items: center;
  padding: 0;
  /* Set body height to 100% of viewport height */
  flex-direction: column;
}

.btn {

  width: 100%;
  height: 72px;
  border-radius: 16px;
  font-family: 'Cairo';
  /* WhatsApp-like gradient */
  background-image: linear-gradient(60deg, #3531ff 0%, #0400e0 100%);
  box-shadow: 0 6px 18px 0 rgba(0, 22, 192, 0.4), 0 4px 10px 0 rgba(28, 21, 253, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: white;
  border: none;
  cursor: pointer;
}


/* Review card styles moved from inline HTML */
.sample-review {
  width: 600px;
  max-width: calc(100% - 32px);
  box-sizing: border-box;
  margin: 12px auto;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  color: #222;
}
.sample-review + .sample-review { /* small separation between cards */
  margin-top: 5px;
}
.sample-review .review-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  justify-content: flex-start;
  flex-wrap: wrap; /* allow stars to wrap to the next line */
}
.sample-review .review-name {
  font-weight: 800;
  color: #222;
}
.sample-review .review-stars {
  color: #ffb907;
  display: inline-flex;
  gap: 2px;
}
.sample-review .review-comment {
  color: #444;
  line-height: 1.4;
}
/* Avatar / left-image layout for reviews */
.sample-review {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  /* Use LTR for the flex container so the first child (avatar) lands visually on the left
     while keeping the page RTL for text. The inner .review-body will preserve RTL. */
  direction: ltr;
}
.review-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.review-body {
  flex: 1 1 auto;
  direction: rtl; /* ensure text remains RTL inside the body */
}

@media (max-width: 420px) {
  /* Keep avatar on the left on small screens; scale it down so content fits.
     Avoid stacking to the top — keep row layout and reduce avatar size. */
  .sample-review { flex-direction: row; direction: ltr; align-items: flex-start; gap: 8px; padding: 10px; }
  .review-avatar { width: 64px; height: 64px; flex: 0 0 48px; margin: 0; border-radius: 8px; }
  .review-body { direction: rtl; }
  .review-name { font-size: 1rem; }
  .review-comment { font-size: 0.95rem; }
}
/* Support RTL: ensure visual order is name then stars (name left of stars) */
[dir="rtl"] .sample-review .review-header {
  direction: rtl;
}

/* Verified buyer badge (light green pastille) */
.verified-badge {
  display: inline-block;
  background: #e6fbef; /* very light green */
  color: #0b7a3a; /* darker green text */
  font-weight: 700;
  font-size: 0.64rem; /* smaller pastil */
  padding: 3px 6px; /* smaller padding */
  border-radius: 999px;
  border: 1px solid rgba(11,122,58,0.12);
  align-self: center;
}

/* In RTL, give a little spacing to the left of the badge so it separates from the name */
[dir="rtl"] .verified-badge {
  margin-left: 8px;
}

/* Place rating (stars) under the name+badge by forcing it to full width */
.sample-review .review-stars {
  order: 2;
  flex-basis: 100%;
  margin-top: 6px;
}
.sample-review .review-name,
.sample-review .verified-badge {
  order: 1;
}

/* Slightly smaller on very small screens */
@media (max-width: 360px) {
  .verified-badge { font-size: 0.64rem; padding: 3px 7px; }
}

.container {

  max-width: 600px;
  align-self: center;
  display: grid;
  border: 0.5px solid #c3c3c3;
  border-radius: 20px;
  padding: 15px;
  align-items: center;
  background-color: #ffffff;
  margin: 10px;


}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--primary-font);
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 12px;
}

/* Hide the original radio buttons */

/* Active button style */

/* Media query for mobile devices */




.discount {

  /* visually place discount before the product title when both are inside a flex container (.item) */
  order: 1;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
  background-color: #E5001B;
  align-self: center;
}

.product-name {
  /* ensure product title follows the discount within the same flex row */
  order: 2;
  font-weight: 700;
  font-size: 1.3rem;
}

.price {

  font-size: 2rem;
  font-weight: 700;
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
  color: #ffffff;
  background-color: #191919;

}

.item {

  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.4rem;
}

.old-price {

  padding-right: 10px;
  text-decoration-line: line-through;
  background-color: #e5e5e5;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;

}


.offer {

  font-size: 1.1em;
  font-weight: 600;
  border-radius: 24px;
  padding-left: 10px;
  padding-right: 10px;
  color: rgb(255, 255, 255);
  background-image: linear-gradient(60deg, #333333 0%, #191919 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  white-space: nowrap;
}

.container {


  gap: 15px;
  align-items: center;


}



.top-promo {
  position: sticky;
  top: 0;
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 1%;
  color: #ffffff;
  min-height: 40px;
  align-items: center;
  display: flex;
  padding: 0 1px; /* horizontal padding, vertical centering handled by flex */
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  /*background: linear-gradient(60deg, #8E2DE2, #4A00E0);*/
 background-image: linear-gradient(60deg, #3531ff 0%, #0400e0 100%);
  /* box-shadow: 0 5px 20px 0 rgba(98, 0, 255, 0.3), 0 4px 10px 0 rgba(102, 0, 255, 0.3); */


}

.promo1 {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;

}

.promo2 {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: scrolltxt 25s linear infinite;

}

@keyframes scrolltxt {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(50%, 0, 0);
  }
}


body,
html {
  margin: 0;
  padding: 0;
}

/* Layout: center main image box and main container with a max width */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
}

.main-image-box,
.container,
.express-checkout,
.icons-image {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* Desktop two-column layout: product (right) and checkout (left) */
@media (min-width: 1024px) {
  .two-column {
    display: flex;
    flex-direction: row-reverse; /* source order: product-section then express-checkout -> product appears on right */
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    box-sizing: border-box;
    justify-content: center;
  }

  .two-column > .product-section,
  .two-column > .express-checkout {
    flex: 1 1 0;
    max-width: 600px;
    width: 100%;
  }

  .product-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .express-checkout {
    display: block;
  }
}

/* Mobile: ensure two-column stacks and doesn't crop sideways */
@media (max-width: 1023px) {
  .two-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 12px; /* horizontal breathing on small screens */
    margin: 0 auto;
    align-items: center;
    justify-content: flex-start;
  }

  .two-column > .product-section,
  .two-column > .express-checkout {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  .product-section, .product-box {
    width: 100%;
    box-sizing: border-box;
  }

  .main-image {
    max-width: 100%;
    height: auto;
  }
}

.main-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make main image responsive */
.main-image {
  max-width: 100%;
  height: auto;
  display: block;
}



/* ------------------------  OFFER ELEMENTS ---------------------------- */


/* --------------------- ANIMATION ANT MARCHING ------------------------- */


/* ------------------------  PRODUCT SECTION ---------------------------- */

.product-section {
  margin: 10px;
  /* Margin around the entire product section */
  display: flex;
  max-width: 95%;
  /* Adjust as needed */
  justify-content: center;
  /* Center the product section */

}

.product-box {
  width: 100%;
  background-color: #ffffff;
  border: 0.2px solid rgb(177, 177, 177);
  border-radius: 18px;
  max-width: 620px;
  /* Adjust as needed */
  margin: 5px;

}


.main-image-box {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  /* Adjust as needed */
}

.main-image {
  max-width: 100%;
  /* Make the main image responsive */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 12px;
  box-shadow: 0 1.5rem 2rem -0.75rem hsla(0, 0%, 0%, 0.30);
}

/* Product thumbnails below main image */
.product-thumbs {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 12px;
  margin-left: 5%;
  margin-right: 5%;
  padding: 8px 6px 0 6px;
  flex-wrap: nowrap;
}

.product-thumbs .thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.product-thumbs .thumb:hover {
  transform: translateY(-3px);
}

.product-thumbs .thumb.active {
  border-color: #1b3a4c;
  box-shadow: 0 6px 18px rgba(27,58,76,0.15);
}

/* RIB (bank account) copy block */


.checked {

  color: orange;
  font-size: 1.3rem;

}

.rating {

  border: 0.5px solid orange;
  border-radius: 12px;
  justify-content: center;
  background-image: linear-gradient(90deg, #FFFBF2 0%, #FFF1CB 100%);

}

.rating-text {

  padding-right: 5px;
  color: #795300;
  font-size: 1.2em;
}




/* ------------------ BUTTON ANIMATION --------------------- */

.btn {
  animation: luce;
  animation-iteration-count: infinite;
}


@keyframes luce {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.05, 1.05);
  }

  100% {
    transform: scale(1, 1);
  }
}

.btn {

  animation: luce 1300ms;
  animation-iteration-count: infinite;

}

/* Customer Service Card (before footer) */
.customer-service-card {
  width: 600px;
  max-width: calc(100% - 32px);
  margin: 32px auto 24px;
  padding: 16px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #e6fbef 0%, #d4f8e8 100%);
  border: 1px solid #0b7a3a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  cursor: pointer;
  transition: all 160ms ease;
}

.customer-service-card:hover {
  background: linear-gradient(135deg, #d4f8e8 0%, #c2f4df 100%);
  box-shadow: 0 8px 20px rgba(11, 122, 58, 0.18);
  transform: translateY(-2px);
  border-color: #0a5a2d;
}

.customer-service-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(11, 122, 58, 0.12);
}

.customer-service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.customer-service-icon .fa {
  color: #009216;
  font-size: 32px;
  line-height: 1;
}

.customer-service-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.customer-service-label {
  font-weight: 700;
  font-size: 1rem;
  color: #0b7a3a;
}

/* Mobile adjustments for customer service card */
@media (max-width: 480px) {
  .customer-service-card {
    padding: 12px;
    gap: 10px;
    margin: 24px 12px 16px;
  }

  .customer-service-icon {
    width: 48px;
    height: 48px;
  }

  .customer-service-icon .fa {
    font-size: 26px;
  }

  .customer-service-label {
    font-size: 0.95rem;
  }
}

.footer {
  margin-top: 50px;
  background-color: #383838;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 36px 12px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-logo {
  height: 40px;
  width: auto;
  max-height: 100%;
  object-fit: contain;

}

.footer-text {
  text-align: center;
  color: #ffffff; 
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}


.icons-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 10px;
}

/* =====================
   RESPONSIVE OVERRIDES
   Mobile-first: ensure container defines width for children,
   stack two-column on phones and enable desktop two-column at large screens.
   ===================== */

/* sensible defaults */
* { box-sizing: border-box; }
html, body { width: 100%; }

/* make images safe */
img { max-width: 100%; height: auto; display: block; }

/* Base: stack columns vertically (mobile-first) */
.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

/* ensure product-section and checkout fill the container */
.two-column > .product-section,
.two-column > .express-checkout {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.product-box { box-sizing: border-box; padding: 10px; width: 100%; }
.container { box-sizing: border-box; width: 100%; max-width: 600px; margin: 0 auto; padding: 16px; }

/* make all direct children of container depend on container width */
.container > * { width: 100%; max-width: 100%; }
.container .item { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.container .item > * { min-width: 0; }

/* Thumbnails: remove percentage margins, allow scroll on small screens */
.product-thumbs { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 8px 6px; justify-content: flex-start; }
.product-thumbs .thumb { flex: 0 0 auto; width: 56px; height: 56px; }

/* form and rating must fit the container */
.container .rating, .container #orderForm { width: 100%; box-sizing: border-box; }

/* Desktop: two-column layout */
@media (min-width: 1024px) {
  .two-column { flex-direction: row-reverse; align-items: flex-start; gap: 24px; max-width: 1200px; padding: 12px 16px; }
  .two-column > .product-section, .two-column > .express-checkout { flex: 1 1 0; max-width: 600px; }
  .product-thumbs .thumb { width: 64px; height: 64px; }
}

/* Tight screens (e.g. Galaxy S21 360px wide) specific adjustments */
@media (max-width: 360px) {
  html, body { overflow-x: hidden; }
  .container { padding-left: 8px; padding-right: 8px; }
  .product-thumbs { gap: 6px; padding-left: 6px; padding-right: 6px; }
  .product-thumbs .thumb { width: 44px; height: 44px; }
  .btn { height: 50px; font-size: 16px; }
}

/* final safety: ensure nothing inside container creates wider-than-container content */
.container * { max-width: 100%; word-break: break-word; }


/* Fix: ensure rating and order form stay inside .container on small screens */
@media (max-width: 600px) {
  .container, .container * {
    box-sizing: border-box;
    max-width: 100%;
  }

  .container .rating {
    width: 100%;
    margin: 8px 0;
    padding: 10px; /* safe padding */
    box-sizing: border-box;
  }

  .container #orderForm {
    width: 100%;
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  /* Ensure inner elements don't cause overflow */
  .container .item {
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }

  .product-thumbs {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Floating WhatsApp button (bottom-right) */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
}
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
.floating-whatsapp .fa { color: #fff; font-size: 28px; line-height: 1; text-decoration: none; }
.floating-whatsapp:active { transform: translateY(0); }

/* ensure anchor has no underline in any state and sensible focus ring for accessibility */
.floating-whatsapp,
.floating-whatsapp:visited {
  text-decoration: none;
}
.floating-whatsapp:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.12);
}

@media (max-width: 480px) {
  .floating-whatsapp { bottom: 14px; right: 14px; width: 72px; height: 72px; }
  .floating-whatsapp .fa { font-size: 32px; }
}

/* WhatsApp pastil badge (attached to floating button) */
.floating-whatsapp { position: fixed; }
.whatsapp-pastil {
  position: absolute;
  /* place to the left of the button */
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #e6fbef; /* light green pastil */
  color: #0b7a3a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,122,58,0.12);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 100000; /* above the button */
  pointer-events: none;
}
.whatsapp-pastil::after {
  /* small right-pointing arrow that points to the button */
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  animation:
    whatsapp-pastil-in 560ms cubic-bezier(.14,.9,.34,1) 260ms 1 both,
    whatsapp-pastil-float 2.4s cubic-bezier(.4,.7,.2,1) 1.2s infinite,
    whatsapp-pastil-pulse 1.8s cubic-bezier(.4,.7,.2,1) 1.2s infinite;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #e6fbef;
}
.floating-whatsapp:hover .whatsapp-pastil,
.floating-whatsapp:focus .whatsapp-pastil {
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  will-change: transform, opacity;
  /* animate in on load: slide from right and fade in */
  animation: whatsapp-pastil-in 560ms cubic-bezier(.14,.9,.34,1) 260ms 1 both;
  pointer-events: auto;
}

@keyframes whatsapp-pastil-in {
  from { opacity: 0; transform: translateY(-50%) translateX(12px); }
  60% { opacity: 1; transform: translateY(-50%) translateX(-6px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes whatsapp-pastil-pulse {
  from { box-shadow: 0 6px 14px rgba(0,0,0,0.08); transform: translateY(-50%) translateX(0) scale(1); }
  60% { box-shadow: 0 10px 22px rgba(37,211,102,0.18); transform: translateY(-50%) translateX(0) scale(1.08); }
  to { box-shadow: 0 6px 14px rgba(0,0,0,0.08); transform: translateY(-50%) translateX(0) scale(1); }
}

@keyframes whatsapp-pastil-float {
  0%   { transform: translateY(-50%) translateX(0) scale(1); }
  25%  { transform: translateY(-50%) translateX(10px) scale(1); }
  50%  { transform: translateY(-50%) translateX(0) scale(1); }
  75%  { transform: translateY(-50%) translateX(-10px) scale(1); }
  100% { transform: translateY(-50%) translateX(0) scale(1); }
}

/* Mobile: show pastil by default (no hover) and slightly adjust spacing */
@media (max-width: 480px) {
  .whatsapp-pastil { opacity: 1; transform: translateY(-50%) translateX(0); right: calc(100% + 8px); font-size: 0.95rem; }
  .whatsapp-pastil::after { border-left-color: #e6fbef; }
}

/* Fake order notification (bottom center) */

/* Temporary: hide fake-order notifications until re-enabled */




/* Scoped styles for Smart Budget Product Section */
.product-section-smart-budget {
    padding: 60px 20px;

    direction: rtl;

}

.psb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.psb-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.psb-section {
    margin-bottom: 40px;
}

.psb-section-title {
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.psb-emoji {
    font-size: 1.2em;
}

.psb-section p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.psb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.psb-feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psb-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

.psb-feature-card h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 700;
}

.psb-feature-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
}

.psb-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.psb-list-items li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05em;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: start;
    line-height: 1.6;
}

.psb-list-items li:before {
    content: "✅";
    color: #27ae60;
    font-weight: bold;
    margin-left: 12px;
    font-size: 1.3em;
    flex-shrink: 0;
}

.psb-list-items li:last-child {
    border-bottom: none;
}

.psb-highlight-box {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.psb-highlight-box h3 {
    color: #2980b9;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.psb-highlight-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.psb-highlight-box li {
    padding: 10px 0;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
}

.psb-highlight-box li:before {
    content: "👈 ";
    margin-left: 5px;
}

.psb-notes-section {
    background: #fff9e6;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.psb-notes-section h3 {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.psb-notes-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.psb-notes-section li {
    padding: 10px 0;
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

.psb-notes-section li:before {
    content: "⚠️ ";
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-section-smart-budget {
        padding: 40px 15px;
    }
    
    .psb-content {
        padding: 25px 20px;
    }
    
    .psb-section-title {
        font-size: 1.4em;
    }
    
    .psb-features-grid {
        grid-template-columns: 1fr;
    }
}




       /* Live dot with expanding wave rings */
        .live-dot {
            position: relative;
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #4dff8e;
            border-radius: 50%;
            margin-left: 12px;
            box-shadow: 0 0 6px rgba(39, 252, 117, 0.9), inset 0 0 3px rgba(255,255,255,0.12);
            z-index: 2;
        }

        .live-dot::after,
        .live-dot::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale(1);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid rgba(77, 255, 142, 0.6);
            background: transparent;
            opacity: 0;
            pointer-events: none;
            z-index: 1;
        }

        .live-dot::after {
            animation: wave-ring 2.6s cubic-bezier(.25,.8,.25,1) infinite;
        }

        .live-dot::before {
            animation: wave-ring 2.6s cubic-bezier(.25,.8,.25,1) infinite 1.3s;
        }

        @keyframes wave-ring {
            0% {
                transform: translate(-50%, -50%) scale(0.6);
                opacity: 0.9;
                border-color: rgba(77,255,142,0.95);
            }
            40% {
                opacity: 0.6;
            }
            100% {
                transform: translate(-50%, -50%) scale(2.4);
                opacity: 0;
                border-color: rgba(77,255,142,0);
            }
        }

        /* Counter animation */
        #counterValue {
            display: inline-block;
            font-weight: bold;
            min-width: 20px;
        }

        /* FAQ sizing to match review cards */

        /* Make the summary fill the available width and look like the review cards before click */

            /* Ensure FAQ closed cards fill the same width as reviews */
        /* Removed empty ruleset .faq-section .faq-list details[open] to avoid empty CSS ruleset error */