:root {
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: rgba(17, 24, 39, 0.12);
    --navy: #0b224c;
    --navy-dark: #071a3a;
    --pill-bg: #0b224c;
    --pill-text: #ffffff;

    --radius: 10px;
    --btn-h: 46px;
    --max: 1200px;
    --gap: 40px;

    --font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --lh: 1.35;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    line-height: var(--lh);
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

/* Header */
.site-header {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
}

.header-inner {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--navy);
    display: inline-block;
}

.brand-name {
    color: var(--navy);
}

.top-nav {
    display: flex;
    gap: 14px;
}

.nav-link {
    font-size: 14px;
    color: rgba(17, 24, 39, 0.75);
}

.nav-link:hover {
    color: rgba(17, 24, 39, 0.95);
}

/* Page */
.page {
    padding: 26px 22px 50px;
}

.product {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--gap);
    align-items: start;
}

/* Gallery */
.gallery {
    min-width: 0;
}

.main-media {
    margin: 0;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 12px;
    overflow: hidden;
    background: #f7f7f7;
}

.main-image {
    width: 100%;
    height: 580px;
    display: block;
    object-fit: cover;
    background: #f3f4f6;
    transition: opacity 180ms ease, transform 220ms ease;
}

.main-image.is-changing {
    opacity: 0.56;
    transform: scale(0.985);
}

/* Thumbnails */
.thumbs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
    align-items: center;
}

.thumb-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: rgba(17, 24, 39, 0.75);
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
}

.thumb-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.thumb-arrow:focus-visible {
    outline: 3px solid rgba(11, 34, 76, 0.22);
    outline-offset: 2px;
}

.thumb-viewport {
    overflow: hidden;
}

.thumb-track {
    display: flex;
    gap: 10px;
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px;
}

.thumb-track::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}

.thumb.is-active {
    border: 2px solid var(--navy);
}

.thumb:focus-visible {
    outline: 3px solid rgba(11, 34, 76, 0.22);
    outline-offset: 2px;
}

/* Info */
.info {
    min-width: 0;
}

.title {
    margin: 0;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: var(--navy-dark);
    
}

.rating-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--navy);
    font-size: 14px;
}

.star {
    opacity: .25;
}

.star.is-on {
    opacity: 1;
}

.reviews-link {
    font-size: 13px;
    color: rgba(17, 24, 39, 0.6);
}

.price {
    margin-top: 10px;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.old {
    font-size: 13px;
    color: rgba(17, 24, 39, 0.55);
    text-decoration: line-through;
}

.new {
    font-size: 16px;
    font-weight: 700;
}

.pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--pill-bg);
    color: var(--pill-text);
    line-height: 1;
}

.subtext {
    margin: 6px 0 0;
    font-size: 12px;
    color: rgba(17, 24, 39, 0.55);
}

.bullets {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(17, 24, 39, 0.82);
    font-size: 14px;
    font-weight: 700;
}

.icon {
    width: 20px;
    height: 20px;
    color: rgba(11, 34, 76, 0.9);
    display: inline-grid;
    place-items: center;
}

/* Bundle box */
.bundle {
    margin-top: 16px;
}

.bundle-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 10px;
}

.bundle-title {
    margin: 0;
    font-size: 14px;
    color: rgba(11, 34, 76, 0.95);
    font-weight: 650;
}

.bundle-title-line {
    flex: 1 1 auto;
    height: 1px;
    background: rgba(11, 34, 76, 0.18);
}

.bundle-form {
    display: grid;
    gap: 12px;
}

.bundle-card {
    border: 1px solid rgba(11, 34, 76, 0.2);
    border-radius: 12px;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    position: relative;
    background: #fff;
}

.bundle-card.is-active {
    border: 2px solid var(--navy);
}

.bundle-card input {
    accent-color: var(--navy);
    transform: translateY(1px);
}

.bundle-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bundle-label {
    font-weight: 780;
    font-size: 17px;
}

.bundle-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-price {
    font-weight: 780;
    font-size: 17px;
    color: rgba(17, 24, 39, 0.9);
}

.badge {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    line-height: 1;
}

.bundle-tag {
    position: absolute;
    top: -10px;
    right: 14px;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    border: 2px solid #fff;
    line-height: 1.1;
}

/* Buttons */
.ctas {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.btn {
    width: 100%;
    height: var(--btn-h);
    border-radius: 10px;
    font-weight: 650;
    font-size: 17px;
    cursor: pointer;
    border: 1px solid transparent;
    background: #fff;
}

.btn-outline {
    border-color: rgba(17, 24, 39, 0.25);
    color: rgba(17, 24, 39, 0.92);
    background: #fff;
}

.btn-primary {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.btn:hover {
    filter: brightness(0.98);
}

.btn:active {
    transform: translateY(1px);
}

.btn:focus-visible {
    outline: 3px solid rgba(11, 34, 76, 0.22);
    outline-offset: 2px;
}

/* Future form */
.future-form {
    margin-top: 14px;
}

.form-wrap {
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.form-summary {
    padding: 12px 14px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    color: rgba(17, 24, 39, 0.88);
}

.form-summary:focus-visible {
    outline: 3px solid rgba(11, 34, 76, 0.22);
    outline-offset: 2px;
}

.form {
    padding: 12px 14px 14px;
    display: grid;
    gap: 12px;
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    font-size: 12px;
    color: rgba(17, 24, 39, 0.62);
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(11, 34, 76, 0.55);
    box-shadow: 0 0 0 3px rgba(11, 34, 76, 0.12);
}

/* Accordion */
.faqs {
    margin-top: 12px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.accordion {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.acc-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 12px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    color: rgba(17, 24, 39, 0.86);
    font-size: 14px;
}

.acc-btn:focus-visible {
    outline: 3px solid rgba(11, 34, 76, 0.22);
    outline-offset: 2px;
}

.chev {
    display: inline-block;
    transition: transform 200ms ease;
    color: rgba(17, 24, 39, 0.55);
}

.accordion.is-open .chev {
    transform: rotate(180deg);
}

.acc-panel {
    height: 0;
    overflow: hidden;
    transition: height 260ms ease;
}

.acc-inner {
    padding: 0 4px 12px;
    color: rgba(17, 24, 39, 0.62);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1023px) {
    .product {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .title {
        font-size: 32px;
        font-weight: 800;
    }

    .main-image {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .page {
        padding: 18px 16px 44px;
    }

    .container {
        padding: 0 16px;
    }

    .top-nav {
        display: none;
    }

    .title {
        font-size: 22px;
    }

    .main-image {
        height: auto;
        max-height: min(62vh, 390px);
        object-fit: contain;
        object-position: center;
        background: #ffffff;
    }

    .thumbs {
        grid-template-columns: 36px 1fr 36px;
    }

    .thumb-arrow {
        width: 36px;
        height: 36px;
    }

    .thumb {
        width: 72px;
        height: 72px;
    }
}




/* ===== Announcement Bar ===== */
.p-scrolling-bar {
    width: 100%;
    height: var(--ann-h);
    background: #0b224c;
    color: #fff;
    border-bottom: 1px solid var(--ann-border);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.p-scrolling-bar__text {
    white-space: nowrap;
    display: inline-block;
    font-weight: 550;
    font-size: 20px;
    padding-left: 100%;
    animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* ===== SectionD ===== */
.SectionD {
    padding: 10px 16px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.SectionD .title {
    font-weight: 700;
    font-size: clamp(20px, 2.6vw, 28px);
    color: var(--text);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.SectionD .description {
    margin-top: 20px;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--text);
    letter-spacing: .2px;
}

/* ===== Slider Card ===== */
.ba-card {
    width: min(520px, 92vw);
    margin: 0 auto;
    background: transparent;
}

.ba-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 4;
    /* square like screenshot */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #eee;
    border: 10px solid rgba(211, 154, 111, .35);
    /* warm frame */
}

.ba-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointing-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* top image clipped by width */
.ba-after {
    clip-path: inset(0 50% 0 0);
    /* will be updated by JS */
}

/* divider line */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(0, 0, 0, .18);
    transform: translateX(-1px);
    pointer-events: none;
}

/* handle */
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    display: grid;
    place-items: center;
    pointer-events: none;
    /* drag happens via range input */
}

.ba-handle svg {
    width: 28px;
    height: 28px;
    opacity: .9;
}

/* labels */
.ba-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.ba-label.before {
    left: 12px;
}

.ba-label.after {
    right: 12px;
}

/* range input overlay for dragging */
.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    /* invisible but draggable */
    cursor: ew-resize;
}

/* Accessibility: focus ring when tabbed */
.ba-range:focus-visible {
    outline: 3px solid rgba(11, 34, 76, .35);
    outline-offset: 6px;
}

/* small screens spacing */
@media (max-width: 480px) {
    .SectionD {
        padding: 20px 12px;
    }

    .ba-frame {
        border-width: 8px;
    }

    .ba-handle {
        width: 48px;
        height: 48px;
    }
}





@media (max-width: 768px) {

    .SectionA-image {
        height: 40vh;
    }

    .heading {
        font-size: 18px;

    }

    .main-box div {
        position: absolute;
        top: 450px
    }

    .SectionB {
        margin-top: 200px;
    }

    .SectionC-gif {
        width: 100%;
        height: auto;
    }

    .SectionC-desc-box {
        gap: 20px;
    }

    .SectionC .InnerC {
        margin: 15px;


    }

    .SectionC-desc-box .desc-heading,
    .SectionC-desc-box .desc-body {
        max-width: 90%;
    }
}




/* ===========How To Section CSS=========== */
.howto {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;

}



.tile {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 3px 10px;
    
    
}

.tile__media {
    width: 550px;
    height: 300px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

}

.tile__media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;

}
.tile--img-right{
    flex-direction: row-reverse;
}

.tile__card {
    width: 550px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b224c;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    
}
.tile__cardInner {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}
.tile__cardInner h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 450;
    margin-bottom: 1px
}
.tile__cardInner p {
    color: #d1d5db;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.5px;
}


@media (max-width: 600px) {

    .tile__media
    {
        width: 330px;
        height: 200px;
    }
    .tile__card{
        width: 330px;
    }

    .tile__cardInner{
  
        width: 90%;
    }
    .tile__cardInner h3{
        font-size: 20px;
    }

    .tile__cardInner p{
        font-size: 15px;
        line-height: 1.5;
    }


}





/* ====== Video Reels Section= ========= */




.testimonial-reels {
  padding: 28px 16px 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-reels__header {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.testimonial-reels__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-reels__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1aa54a;
  background: rgba(26, 165, 74, 0.12);
  border: 1px solid rgba(26, 165, 74, 0.22);
  border-radius: 999px;
}

.testimonial-reels__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11, 27, 43, 0.72);
}

.testimonial-reels__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 14px;
  padding: 6px 2px 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;
  -webkit-overflow-scrolling: touch;
  outline: none;
}

.reel-card { scroll-snap-align: start; }

.reel-card__btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 20px;
  min-height: 44px;
  position: relative;
}

.reel-card__btn:focus-visible {
  outline: 3px solid rgba(26, 165, 74, 0.35);
  outline-offset: 4px;
  border-radius: 22px;
}

.reel-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #eef3f8;
  box-shadow: 0 10px 28px rgba(10, 30, 60, 0.12);
}

.reel-card__player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 28px rgba(10, 30, 60, 0.12);
}

.reel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0b1b2b;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(11, 27, 43, 0.12);
  transition: transform 160ms ease, background 160ms ease;
  pointer-events: none;
}

.reel-card__btn:hover .reel-card__play {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.98);
}

.reel-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.reel-card__watch-link {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reel-card__watch-link:hover {
  background: rgba(0, 0, 0, 0.82);
  text-decoration: none;
}

.reel-card__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 640px) {
  .testimonial-reels { padding: 36px 20px 26px; }

  .testimonial-reels__header {
    text-align: left;
    margin-bottom: 18px;
  }

  .testimonial-reels__title {
    justify-content: flex-start;
    font-size: 26px;
  }

  .testimonial-reels__track {
    grid-auto-columns: 46%;
    gap: 16px;
    scroll-padding: 20px;
  }
}

@media (min-width: 960px) {
  .testimonial-reels__track { grid-auto-columns: 32%; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reel-card__play { transition: none; }
}





/* ===============belo video section================ */











.smilex-special {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #071a3a;
  padding: 30px 0;
}

.feature-band {
  width: 100%;
  display: flex;
  justify-content: center;
}

.feature-card {
  width: 1105px;
  max-width: 1150px;
  height: 460px;
  background: #e4edff;
  border-radius: 0;
  display: flex;
  overflow: hidden;
}

.feature-left {
  position: relative;
  width: 361px;
  min-width: 361px;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

.model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.watermark {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 108px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.feature-right {
  flex: 1;
  padding: 70px;
}

.title {
  margin: 0 0 22px 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #0b1220;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  background: #39b54a;
  border: 1px solid #2b8f39;
  border-radius: 2px;
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .feature-card {
    height: auto;
  }

  .feature-right {
    padding: 34px;
  }

  .title {
    font-size: 28px;
  }

  .check-item {
    font-size: 16.5px;
  }
}

@media (max-width: 700px) {
  .smilex-special {
    padding: 18px 14px;
  }

  .feature-card {
    flex-direction: column;
  }

  .feature-left {
    width: 100%;
    min-width: 0;
    height: 320px;
  }

  .watermark {
    top: 18px;
    left: 18px;
    width: 96px;
  }

  .feature-right {
    padding: 28px;
  }
}




/* ============= reviews page====== */
/* styles.css */

/* Base */


.reviews-page {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
}

.reviews-card {
  width: 100%;
  max-width: 900px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 28px 0;
}

/* Summary (Desktop first: clean + symmetrical) */
.summary-row {
  display: grid;
  grid-template-columns: 280px 1px 1fr 1px 260px;
  align-items: start; /* prevents button visually “floating” mid when form opens */
  column-gap: 28px;
  padding: 0 0 26px 0;
  border-bottom: 1px solid #e4e8f0;
}

.v-divider {
  width: 1px;
  background: #e4e8f0;
  align-self: stretch;
  margin: 18px 0;
}

/* Left */
.summary-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.stars {
  color: #0f4aa2;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.stars.large {
  font-size: 22px;
}

.rating-text {
  font-size: 15px;
  margin-top: 8px;
  color: #334155;
}

.verified {
  color: #1dbf73;
  font-size: 14px;
  margin-left: 6px;
}

/* Middle */
.summary-middle {
  min-width: 0;
  padding-top: 6px;
}

.bar-row {
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
}

.bar-row:last-child { margin-bottom: 0; }

.bar-row .stars {
  font-size: 14px;
  letter-spacing: 1.5px;
}

.bar {
  width: 100%;
  height: 12px;
  background: #eeeeee;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.bar .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #0f4aa2;
  transition: width 300ms ease;
}

.count {
  text-align: right;
  color: #6b7280;
}

/* Right */
.summary-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* keeps desktop symmetry */
  gap: 12px;
  padding-top: 6px;
}

.review-btn {
  width: 220px;
  max-width: 100%;
  background: #0f4aa2;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
}

.review-btn:hover { opacity: 0.92; }

/* Review modal */
.review-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.review-modal.is-open {
  display: flex;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 24, 0.65);
}

.review-modal__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.review-modal__title {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 650;
  color: #0f172a;
}

.review-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: #0f4aa2;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Form UI */
.review-form {
  width: 100%;
  border: 1px solid #e4e8f0;
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
}

.form-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 14px 0;
}

.star-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #cbd5e1;
  padding: 4px 6px;
}

.star-btn:hover,
.star-btn.is-active {
  color: #0f4aa2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  font-size: 13px;
  color: #334155;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid #e4e8f0;
  padding: 10px 10px;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  color: #0f172a;
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.input:focus,
.textarea:focus {
  border-color: #0f4aa2;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.submit-btn {
  background: #0f4aa2;
  color: #ffffff;
  border: none;
  padding: 11px 18px;
  font-size: 14px;
  cursor: pointer;
}

.submit-btn:hover { opacity: 0.92; }

.success-text {
  color: #1dbf73;
  font-size: 14px;
  font-weight: 600;
}

.error-text {
  color: #b42318;
  font-size: 12px;
  font-weight: 600;
}

.review-image-help {
  font-size: 12px;
  color: #64748b;
}

.review-image-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  max-width: 420px;
}

.review-image-chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e4e8f0;
  background: #f8fafc;
  font-size: 12px;
  color: #0f172a;
}

.review-image-name {
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-image-remove {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #0b224c;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

/* Filter */
.filter-row {
  padding: 18px 0;
  border-bottom: 1px solid #e4e8f0;
}

.reviews-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
}

.control {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.control-label {
  font-weight: 600;
  color: #0f172a;
}

.control-select {
  min-width: 140px;
  border: 1px solid #e4e8f0;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 14px;
  background: #fff;
  color: #0f172a;
}

.control-select:focus {
  outline: 3px solid rgba(15, 74, 162, 0.18);
  border-color: #0f4aa2;
}

.reviews-meta {
  width: 100%;
  margin-top: 12px;
  color: #6b7280;
  font-size: 13px;
}

/* Review item */
.review-item {
  padding: 22px 0;
}

.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 8px 0;
  color: #0f4aa2;
  flex-wrap: wrap;
}

.avatar {
  width: 30px;
  height: 30px;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: #64748b;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  max-width: 760px;
  margin: 0;
  color: #334155;
}

.review-more {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.review-more__link {
  color: #0f4aa2;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #0f4aa2;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.review-more__link:hover {
  background: #0f4aa2;
  color: #ffffff;
  text-decoration: none;
}

.review-more__link:focus-visible {
  outline: 3px solid rgba(15, 74, 162, 0.25);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .review-more {
    justify-content: flex-start;
  }
  .review-more__link {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }
}

.review-attachments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 12px;
  max-width: 420px;
}

.review-attachment {
  width: 100%;
  max-width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e4e8f0;
  cursor: zoom-in;
  background: #f3f4f6;
}

.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal.is-open {
  display: flex;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.65);
}

.image-modal__content {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  max-height: 86vh;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
}

.image-modal__img {
  max-width: 100%;
  max-height: calc(86vh - 40px);
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.image-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #0b224c;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.reviews-empty {
  display: none;
  padding: 18px 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 6px;
}

.page-btn,
.page-number {
  border: 1px solid #e4e8f0;
  background: #fff;
  color: #0f172a;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-number.is-active {
  background: #0f4aa2;
  color: #fff;
  border-color: #0f4aa2;
}

.page-number:focus-visible,
.page-btn:focus-visible {
  outline: 3px solid rgba(15, 74, 162, 0.18);
  outline-offset: 2px;
}

.page-numbers {
  display: flex;
  gap: 6px;
}

/* =========================
   RESPONSIVE (Keep existing mobile behavior)
   ========================= */

/* Large tablets */
@media (max-width: 1024px) {
  .summary-row {
    grid-template-columns: 260px 1px 1fr 1px 220px;
    column-gap: 20px;
  }
  .review-btn { width: 200px; }
}

/* Tablets/Mobile: stack like your current behavior (do not break) */
@media (max-width: 860px) {
  .summary-row {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding-bottom: 22px;
  }

  .v-divider { display: none; }

  .summary-left { order: 1; }
  .summary-middle { order: 2; }

  .summary-right {
    order: 3;
    align-items: flex-start;
  }

  .review-btn { width: 260px; }
  .review-modal__content { width: min(94vw, 640px); }
  .form-grid { grid-template-columns: 1fr; }
}

/* Mobile tighter */
@media (max-width: 520px) {
  .reviews-page { padding: 26px 14px; }

  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .stars.large { font-size: 20px; }
  .rating-text { font-size: 14px; }

  .bar-row {
    grid-template-columns: 86px 1fr 28px;
    gap: 10px;
    font-size: 13px;
  }

  .bar { height: 11px; }

  .review-btn {
    width: 100%;
    padding: 12px 16px;
  }

  .review-text { font-size: 14.5px; }

  .reviews-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: end;
  }

  .control-select {
    width: 100%;
  }

  .pagination {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Form: keep stacking */
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
