
body{
  margin:0;
  font-family:Segoe UI,Roboto,sans-serif;
  background:#f6f8fb;
  color:#1f2937;
}
a{text-decoration:none;color:inherit}



/* =========================
   GALLERY (FULL FIXED)
========================= */
.review-gallery-side{
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:12px;
  margin:20px 0 30px;
  align-items:stretch;
}

/* MAIN IMAGE */
.main-image-side{
  position:relative;

}

.main-image-side img{
  width:100%;
  height:100%;            
  object-fit:cover;       
  border-radius:5px;
  display:block;
}

/* THUMB WRAP */
.thumb-column-wrapV{
  max-height:375px;
}
.thumb-column-wrap{
  max-height:500px;
}

/* THUMBS */
.thumb-column{
  display:flex;
  flex-direction:column;
  gap:10px;
  height:100%;
  overflow-y:auto;
  padding-right:4px;
}

/* scrollbar */
.thumb-column::-webkit-scrollbar{
  width:6px;
}
.thumb-column::-webkit-scrollbar-thumb{
  background:#cbd5e1;
  border-radius:10px;
}

/* thumb images */
.thumb-column img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:5px;
  cursor:pointer;
  opacity:.7;
  transition:.2s;
  flex-shrink:0; 
}

.thumb-column img:hover{
  opacity:1;
}

.thumb-column img.active-thumb{
  opacity:1;

}

/* =========================
   SPECS
========================= */

/* =========================
   CONTENT
========================= */
.review-content{
  max-width:900px;
}
.rev-section-title{
  font-size:26px;
  margin:50px 0 16px;
}
.rev-paragraph{
  font-size:17px;
  line-height:1.7;
  color:#4b5563;
}

.para-images{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0;
}
.para-images img{
  width:220px;
  border-radius:12px;
  cursor:pointer;
}

/* =========================
   IMAGE MODAL
========================= */
.img-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  z-index:9999;
  justify-content:center;
  align-items:center;
}
.img-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
.img-modal span{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  cursor:pointer;
color: #ffffff;
}

.img-modal-content{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
  z-index:2;
}

/* =========================
   LOADER
========================= */
.img-loader{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.1);
  backdrop-filter:blur(2px);
  z-index:5;
}

.spinner{
  width:42px;
  height:42px;
  border:4px solid rgba(0,0,0,.4);
  border-top-color:transparent;
  border-radius:50%;
  animation:spin .7s linear infinite;
}

@keyframes spin{
  from{transform:rotate(0)}
  to{transform:rotate(360deg)}
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){

  /* ðŸ”¥ LIMIT GALLERY WIDTH */
  .review-gallery-side{
    max-width:92%;
    margin:16px auto 24px; /* center it */
    grid-template-columns:1fr;
    gap:10px;
  }

  /* MAIN IMAGE */
  .main-image-side{
    aspect-ratio:3/2;
    border-radius:16px;
    overflow:hidden; /* important */
  }

  .main-image-side img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /* THUMB STRIP */
  .thumb-column{
    padding-left:4px;
  }

}
@media(max-width:900px){

  /* SHRINK WHOLE GALLERY */
  .review-gallery-side{
    max-width:85%;      /* ðŸ”¥ smaller overall */
    margin:14px auto 20px;
  }

  /* LIMIT IMAGE HEIGHT HARD */
  .main-image-side{
   /* max-height:200px; */  /* key fix */
  }

  .main-image-side img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

}

/* =========================
   YOU MIGHT ALSO LIKE
========================= */

/* reuse same grid style but tighter */

/* card styling (same as listing page) */
.review-card{
    background:#ffffff;
    border-radius:5px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    transition:.25s;
}

.review-card:hover{
    

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* image */
.review-card img{
    width:100%;
    display:block;
}

/* body */
.review-body{
    padding:16px 18px 20px;
}

.review-body h3{
    font-size:18px;
    margin:0 0 8px;
    line-height:1.3;
}

.review-overview{
    font-size:14px;
    color:#6b7280;
    line-height:1.5;
}
/* fix related review card images */
.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:20px;
}

.review-card img{
    width:100%;
    height:250px;        /* force consistent size */
    object-fit:cover;    /* crop nicely */
    display:block;
}
.review-breadcrumb{
  margin-top:20px;
  margin-bottom:10px;
  font-size:14px;
  color:#6b7280;
}

.review-breadcrumb a{
  color:#374151;
}

.review-breadcrumb a:hover{
  color:#111827;
}

.review-breadcrumb span{
  margin:0 6px;
  opacity:.6;
}
h1{
  margin-top:6px;
}

/* =========================
   TOP BANNER AREA
========================= */

.top-banner-wrap{
    background:#a4a6a8;

    margin-bottom:20px;
}

.banner-container{
    text-align:center;
}
/* =========================
   TOP BRANDS
========================= */
.top-brands{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}
.brand-pill{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    background:#ffffff;
    border-radius:999px;
    font-weight:700;
    border:1px solid #e5e7eb;
}
.brand-pill:hover{
    background:#f9fafb;
    transform:translateY(-3px);
}






/* =========================
   RIGHT SIDE NAV
========================= */
/* =========================
   RIGHT SIDE NAV (FIXED TO CONTENT)
========================= */

/* WRAPPER (same container alignment) */

/* MENU BOX */

/* ITEMS */

/* HOVER */

/* ACTIVE */

/* =========================
   PAGE SPACE ADJUST
========================= */
/* KEEP container NORMAL */
.container{
  max-width:1000px;
  margin:auto;
  padding:10px 20px;
}

/* NEW: ONLY REVIEW LAYOUT */


/* =========================
   MOBILE
========================= */




/* =========================
   SPEC UI
========================= */
/* FIX SCROLL OFFSET FOR STICKY NAV */
#gallery,
#review,
#verdict{
  scroll-margin-top: 130px;
}

/* COLORS */
.fb{ background:#1877f2; }
.tw{ background:#1da1f2; }
.li{ background:#0a66c2; }
.wa{ background:#25d366; }

/* hover */
/* =========================
   TAGS (UNDER TITLE)
========================= */

/* BASE TAG */

/* COLORS */   /* use case */    /* fuel */  /* segment */    /* transmission */

/* HOVER (optional but nice) */



/* ROW */
.review-meta-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

/* SHARE */

/* ICON BUTTON */

/* HOVER (clean, not flashy) */

/* SHARE INLINE */

/* ICON STYLE */

/* HOVER */



/* =========================
   PROS CONS BOX
========================= */
/* =========================
   NEW PROS CONS (MODERN CARDS)
========================= */

.pros-cons-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:20px;
}

/* CARD */
.pc-box{
    background:#ffffff;
    border-radius:16px;
    padding:20px 22px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:.25s;
}

/* subtle hover lift */
.pc-box:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

/* HEADER */
.pc-title{
    font-size:18px;
    font-weight:800;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* ICON CIRCLE */
.pc-icon{
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:bold;
}

/* COLORS */
.pc-pro .pc-title{
    color:#059669;
}
.pc-pro .pc-icon{
    background:#ecfdf5;
    color:#10b981;
}

.pc-con .pc-title{
    color:#dc2626;
}
.pc-con .pc-icon{
    background:#fef2f2;
    color:#ef4444;
}

/* LIST */
/* NUMBERED LIST (MODERN STYLE) */
.pc-list{
    list-style:none;
    padding:0;
    margin:0;
    counter-reset:item;
}

.pc-list li{
    counter-increment:item;

    display:flex;
    align-items:flex-start;
    gap:12px;

    font-size:14px;
    line-height:1.5;
    margin-bottom:12px;
}

/* NUMBER BADGE */
.pc-list li::before{
    content: counter(item);

    min-width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;
    font-size:12px;
    font-weight:700;
}

/* COLORS PER TYPE */
.pc-pro .pc-list li::before{
    background:#ecfdf5;
    color:#059669;
}

.pc-con .pc-list li::before{
    background:#fef2f2;
    color:#dc2626;
}

/* BULLET ICON */


/* mobile */
@media(max-width:700px){
    .pros-cons-wrap{
        grid-template-columns:1fr;
    }
}

/* =========================
   COMBINED VERDICT SECTION
========================= */

.verdict-box{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:5px;
  padding:18px;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

/* tighten spacing */

/* pros cons inside */
.pros-cons-wrap{
  margin-top:15px;
  border-top:1px solid #e5e7eb;
  padding-top:15px;
}
/* =========================
   TITLE + TAGS INLINE
========================= */

/* remove margin pushing it down */

/* optional: keep tags aligned nicely */

/* =========================
   REVIEW FOOTER CARD (NEW)
========================= */

.review-footer-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;

    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:16px 18px;
    margin-top:30px;

    box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

/* =========================
   AUTHOR
========================= */

.review-author-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.author-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#111827;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.author-info{
    display:flex;
    flex-direction:column;
}

.author-name{
    font-weight:700;
    font-size:14px;
    color:#111827;
}

.author-role{
    font-size:12px;
    color:#6b7280;
}

/* =========================
   META
========================= */

/* =========================
   SHARE
========================= */

.review-share-box{
    display:flex;
    gap:8px;
}

.share-pill{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
    transition:.2s;
}

/* colors */
.share-pill.fb{ background:#1877f2; }
.share-pill.tw{ background:#111827; }
.share-pill.li{ background:#0a66c2; }
.share-pill.wa{ background:#25d366; }

.share-pill:hover{
    transform:translateY(-2px);
    opacity:.9;
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){
    .review-footer-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .review-share-box{
        margin-top:10px;
    }
}

/* =========================
   NEW HERO CARD
========================= */

.review-hero-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:5px;
    padding:24px 26px;
    margin-top:10px;
    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* BRAND */
.hero-brand a{
    font-size:13px;
    font-weight:700;
    color:#2563eb;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* TITLE */
.hero-main-title{
    font-size:34px;
    margin:6px 0 10px;
    font-weight:800;
    line-height:1.2;
}

/* RATING */
.hero-rating{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.rating-score{
    font-size:22px;
    font-weight:800;
    color:#111827;
}

.rating-stars{
    color:#f59e0b;
    font-size:23px;
}

/* INTRO */
.hero-intro{
    font-size:16px;
    line-height:1.7;
    color:#4b5563;
    margin:10px 0 18px;
    max-width:800px;
}

/* FEATURES (NEW TAG STYLE) */
.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

/* BOX STYLE */
.feature-box{
    padding:8px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    background:#f3f4f6;
    color:#111827;
}

/* COLORS */
.feature-box.green{ background:#ecfdf5; color:#059669; }
.feature-box.purple{ background:#f5f3ff; color:#7c3aed; }
.feature-box.gray{ background:#f9fafb; color:#6b7280; }

/* MOBILE */
@media(max-width:700px){

    .hero-main-title{
        font-size:26px;
    }

    .review-hero-card{
        padding:18px;
    }

}
/* =========================
   IMAGE + TEXT LAYOUT
========================= */

.section-flex{
    display:block;
}

/* IMAGE LEFT */
.section-img{
    float:left;
    width:320px;
    margin:0 18px 10px 0;
    border-radius:12px;
}

/* ALTERNATE RIGHT */
.section-flex.reverse .section-img{
    float:right;
    margin:0 0 10px 18px;
}

/* CLEAR FIX */
.section-flex::after{
    content:"";
    display:block;
    clear:both;
}
