
/* =========================================================
   HERO SECTION — GGR PREMIUM HERO
   ========================================================= */
.ggr-premium-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  background: linear-gradient(115deg,#e8efff 0%,#f5f8ff 60%,#ffffff 100%);
  overflow: hidden;
  padding: 130px 0 130px;
  display: flex;
  justify-content: center;
}
.ggr-premium-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-start;
  gap: 64px;
  padding-top: 10px;
}
.ggr-premium-hero .hero-left {
  box-shadow: 0 0 60px rgba(37,99,235,0.05);
  border-radius: 20px;
  padding: 10px 0;
}
.ggr-premium-hero h1 {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.hero-sub {
  color: var(--muted);
  font-size: 1.12rem;
  letter-spacing: 0.1px;
  line-height: 1.65;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 620px;
  opacity: 0.95;
}
.hero-search {
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
  border: 1px solid rgba(59,108,240,0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 26px;
}
.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  background: #fff;
}
.hero-search button {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
}
.hero-search button:hover { background: var(--primary-600); transform: translateY(-1px); }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 10px;
}
.hero-cta .btn-primary {
  background: #2e61eb; color: #fff; font-weight:700;
  padding: 12px 22px; border-radius:12px;
  box-shadow:0 6px 14px rgba(29,78,216,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration:none;
}
.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29,78,216,0.25);
}
.hero-cta .btn-outline {
  border:2px solid var(--primary); color:var(--primary);
  font-weight:700; padding:12px 22px; border-radius:12px;
  background:transparent; text-decoration:none;
  transition: background .25s ease, color .25s ease;
}
.hero-cta .btn-outline:hover { background:var(--primary); color:#fff; }

.hero-trust {
  display:flex; justify-content:center; gap:26px;
  background:#fff; padding:14px 32px; border-radius:999px;
  box-shadow:0 8px 24px rgba(37,99,235,0.10);
  font-weight:600; font-size:.96rem; color:#334155;
  margin:26px auto -40px; width:fit-content; align-items:center;
  opacity:0; transform:translateX(-60px);
  animation:trustFadeIn 1.2s ease-out 0.3s forwards;
}
.hero-trust li { transition: transform .25s ease, color .25s ease; }
.hero-trust li:hover { transform: translateY(-2px); color: #1d4ed8; }
.hero-trust li::marker { content: ""; }
@keyframes trustFadeIn {
  0%{opacity:0;transform:translateX(-60px) scale(0.98);filter:blur(6px);}
  100%{opacity:1;transform:translateX(0) scale(1);filter:blur(0);}
}
.hero-right img {
  width:100%;max-width:550px;border-radius:20px;
  box-shadow:0 18px 40px rgba(13,19,33,0.15);
  transform:scale(1.02);
  transition:transform .3s ease,box-shadow .3s ease;
  margin-right:20px;
}
.hero-right img:hover {
  transform:scale(1.05);
  box-shadow:0 24px 60px rgba(13,19,33,0.22);
}



/* =========================================================
   ✨ Editor’s Top Picks — Premium Layout + Swiper Fix
   ========================================================= */
.ggr-top-picks {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.ggr-top-picks::after {
  content:""; position:absolute; top:0; bottom:0;
  left:33%; right:33%;
  background:linear-gradient(to right,rgba(226,232,240,0.2) 1px,transparent 1px);
  background-size:220px 100%; opacity:0.25;
}
.ggr-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}
.ggr-section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  margin-bottom: 18px;
}

.ggr-section-head p {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.95;
}

.ggr-section-head .view-all {
   color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ggr-section-head .view-all:hover {
  transform: translateX(4px);
  color: var(--primary-600); 
}

.ggr-card .ggr-card-cta {
   margin-top: auto;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 18px 8px;
  text-decoration: none;
  transition: color .25s ease;
}
.ggr-card .ggr-card-cta:hover {
  color: var(--primary-600);
}


/* SWIPER STABILITY FIX */


.ggr-swiper {
  width:100% !important;
 overflow: hidden;
  position:relative;
  padding-bottom:10px;
}
.swiper-wrapper {
  will-change: transform;
  transition-timing-function: linear !important;
}
.ggr-swiper .swiper-wrapper {
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:stretch !important;
  width:100% !important;
  height:auto !important;
  box-sizing:border-box;
}
.ggr-swiper .swiper-slide {
  width:auto !important;
  flex-shrink:0 !important;
  display:flex !important;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  text-align:left;
  box-sizing:border-box;
  height:auto !important;
}
.ggr-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ggr-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  margin: 12px 18px 8px;
}
.ggr-card p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 18px 14px;
}


.ggr-card a.ggr-card-cta,
.ggr-card a.ggr-card-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  margin: 0 18px;
  display: inline-block;
}

.ggr-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,0.08); }
.ggr-card-media {position: relative;
  overflow: hidden;
  border-radius: 10px;}
.ggr-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(29,78,216,0.25), rgba(147,197,253,0.15));
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.1);
}
.ggr-card-media:hover::after {
  opacity: 1;
  transform: scale(1);
}
.ggr-card-media img {  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
   transition: transform 0.6s ease; }
.ggr-card-media:hover img {
  transform: scale(1.08);
}

.ggr-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  z-index: 2;
}

.ggr-swiper, .ggr-scroll-wrapper {
  overflow-x: hidden;
}

.ggr-card-excerpt {
  flex-grow: 1;
  font-size:.92rem; color:#64748b;
  margin:0 16px 16px;
}

.ggr-swiper-nav {
  display: none !important;
}
.ggr-swiper .swiper-button-prev,
.ggr-swiper .swiper-button-next {
  pointer-events: auto;
  position:static;
  width:38px;height:38px;border-radius:50%;
  background:#fff;border:1px solid #e2e8f0;
  box-shadow:0 4px 10px rgba(2,6,23,0.08);
  transition:all .25s ease;
    z-index: 5;
}
.ggr-swiper .swiper-button-prev:hover,
.ggr-swiper .swiper-button-next:hover {
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
  transform:translateY(-2px);
}
.ggr-swiper .swiper-pagination {
  position:static !important;
  margin-top:14px;
}
.ggr-swiper:hover {
  cursor: grab;
}


.ggr-scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px; /* space for arrows */
}

.ggr-scroll {
   display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 28px;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.ggr-scroll::-webkit-scrollbar { display: none; }

.ggr-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 300px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ggr-card:hover {
   transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}
.ggr-card-media img {
   width: 100%;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
}



/* =========================================================
   🧩 GGR — Top Categories Grid
   ========================================================= */
.ggr-top-categories {
  padding: 100px 0 80px;
  background: var(--bg-soft);
}
.ggr-top-categories .ggr-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.ggr-top-categories h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.ggr-top-categories .view-all {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.ggr-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.ggr-cat-card {
  background: #fff;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-2);
  padding: 18px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: var(--text);
}
.ggr-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}
.ggr-cat-thumb img {
  width: 100%;
  border-radius: var(--radius-12);
  margin-bottom: 14px;
}
.ggr-cat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.ggr-cat-card p {
  font-size: 0.9rem;
  color: var(--muted);
}
/* =========================================================
   📰 GGR LATEST REVIEWS SLIDER — Final Premium Version
   ========================================================= */

/* ---------- Section Wrapper ---------- */
.ggr-latest-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  overflow: hidden;
}

/* ---------- Section Head ---------- */
.ggr-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.ggr-section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}
.ggr-section-head p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.65;
  opacity: 0.95;
}

/* ---------- Swiper Container ---------- */
.ggr-latest-swiper {
  padding: 30px 0 80px;
  position: relative;
  z-index: 0;
}
.ggr-latest-swiper .swiper-wrapper {
  align-items: stretch;
  z-index: 0 !important; /* wrapper below slides */
}

/* ---------- Slides ---------- */
.ggr-latest-swiper .swiper-slide {
  transition: all 0.45s ease;
  transform-origin: center center;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  cursor: grab;
  position: relative;
  z-index: 1;
  pointer-events: none; /* default off, JS enables for visible slides */
}

/* Non-active slides smaller */
.ggr-latest-swiper .swiper-slide:not(.swiper-slide-active) {
  filter: blur(1px) brightness(0.92);
  opacity: 0.65;
  transform: scale(0.92);
}

/* Active slide highlighted */
.ggr-latest-swiper .swiper-slide-active {
  filter: none;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 12px 40px rgba(29, 78, 216, 0.25);
  z-index: 99 !important;
  pointer-events: auto !important;
  transform-style: flat !important; /* prevent 3D stacking */
}

/* Hover effect */
.ggr-latest-swiper .swiper-slide-active:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(29, 78, 216, 0.35);
}

/* ---------- Card Core ---------- */
.ggr-latest-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.ggr-latest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

/* ---------- Card Image ---------- */
.ggr-card-img {
  position: relative;
  overflow: hidden;
}
.ggr-card-img img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.ggr-latest-card:hover img {
  transform: scale(1.05);
}
.ggr-cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tag-color, #2563eb);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ---------- Card Content ---------- */
.ggr-card-content {
  padding: 22px 24px 28px;
}
.ggr-card-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.ggr-card-content p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.55;
  min-height: 42px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.ggr-latest-card .btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
  transition: all .25s ease;
}
.ggr-latest-card .btn-outline:hover {
  background: #2563eb;
  color: #fff;
}
.ggr-latest-swiper .swiper-slide a.btn {
  transition: all 0.3s ease;
}
.ggr-latest-swiper .swiper-slide a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
}

/* ---------- Fix: active slide always on top ---------- */
.ggr-latest-swiper .swiper-slide.swiper-slide-visible {
  pointer-events: auto; /* visible slides clickable */
}
.swiper-slide-shadow,
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  pointer-events: none !important;
}
.ggr-latest-swiper .swiper-wrapper {
  pointer-events: none; /* wrapper should not block clicks */
}


/* =========================================================
    GGR — Comparison Table Section (Homepage)
   ========================================================= */

.ggr-compare-section {
  padding: 100px 0 90px;
  background: #ffffff;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.ggr-compare-section .ggr-section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.ggr-compare-section .ggr-section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.ggr-compare-section .ggr-section-head p {
  font-size: 1.08rem;
  color: #475569;
  opacity: 0.95;
  line-height: 1.65;
}

/* Table wrapper */
.ggr-compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Base Table */
.ggr-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ggr-compare-table thead {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  color: #e5f0ff;
}

.ggr-compare-table th,
.ggr-compare-table td {
  padding: 16px 20px;
  font-size: 0.92rem;
  text-align: left;
  vertical-align: top;
}

.ggr-compare-table th {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.ggr-compare-table tbody tr:nth-child(even) {
  background: #eef2ff;
}

.ggr-compare-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.ggr-compare-row:hover {
  background: #e0ecff;
  transition: background 0.25s ease;
}

/* Name + Badge */
.ggr-name-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ggr-tool-name {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.98rem;
}

.ggr-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  position: static !important;
  line-height: 1.1;
  transition: all 0.25s ease-in-out;
}

.ggr-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.ggr-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: rgba(255,255,255,0.25);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
}


.ggr-name-badge {
   display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  margin-bottom: 6px;
}

.ggr-tool-tagline {
  font-size: 0.85rem;
  color: #475569;
}

/* Price column */
.ggr-price-main {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.ggr-price-note {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
}

.ggr-verified {
  display: block;
  margin-top: 2px;
}

.ggr-verify-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #2563eb;
  text-decoration: underline;
}

/* Rating */
.ggr-rating-score {
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
}

.ggr-rating-count {
  font-size: 0.78rem;
  color: #64748b;
}

/* CTA Buttons */
.ggr-col-cta .btn-primary,
.ggr-col-cta .btn-outline {
  padding: 8px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
  display: inline-block;
}

.ggr-col-cta .btn-primary {
  background: #2563eb;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.ggr-col-cta .btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.ggr-col-cta .btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.ggr-col-cta .btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* Table subtle shadows */
.ggr-compare-table th:first-child,
.ggr-compare-table td:first-child {
  border-left: none;
}
.ggr-compare-table th:last-child,
.ggr-compare-table td:last-child {
  border-right: none;
}


.ggr-compare-disclaimer {
  text-align: center;
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  color: #475569;
  background: #f8fafc;
  border: 1px solid rgba(203, 213, 225, 0.6);
  border-radius: 12px;
  padding: 14px 20px;
  line-height: 1.6;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}
.ggr-compare-disclaimer strong {
  color: #1e3a8a;
}
#ggr-compare .ggr-section-head {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 780px;
}

#ggr-compare .ggr-section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.3;
}

#ggr-compare .ggr-section-head p {
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.95;
}

/* AUthor Trust Section*/

.author-trust-section {
  padding: 64px 20px 48px;
  background: #f7fafc; /* halka premium bg */
}

.author-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.author-avatar img {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.author-content h2 {
  margin: 4px 0 10px;
}

.author-bio {
  margin-bottom: 18px;
  line-height: 1.6;
  color: #455a64;
}

.author-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #7b8794;
  font-weight: 600;
}

.author-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.author-socials li a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #d0d7de;
  font-size: 13px;
  text-decoration: none;
  color: #0f172a;
  background: #f9fafb;
  transition: all 0.18s ease-in-out;
}

.author-socials li a:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.author-trust-section {
  padding: 80px 20px;
  background: #f8fbfd;
}

.author-card.pro-style {
  max-width: 940px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform 0.25s ease;
}

.author-card.pro-style:hover {
  transform: translateY(-4px);
}

.author-avatar {
  position: relative;
  flex-shrink: 0;
}

.author-avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bfa5, #0073aa);
  z-index: 0;
}

.author-avatar img {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.author-content h2 {
  margin: 6px 0 10px;
  font-size: 1.8rem;
  color: #0f172a;
}

.author-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: #00bfa5;
}

.author-bio {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15.5px;
}

/* ===== Buttons (Premium Neumorphic Style) ===== */
.author-socials.pro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.author-socials.pro-links a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
  background: #f9fafb;
  box-shadow: inset 1px 1px 2px #fff, inset -2px -2px 4px rgba(0,0,0,0.05),
              0 6px 14px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.author-socials.pro-links a:hover {
  background: linear-gradient(90deg, #0073aa, #00bfa5);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.3);
  transform: translateY(-2px);
}





/* ====== FAQ SECTION (PREMIUM LOOK) ====== */

.faq-section {
  padding: 80px 20px 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.faq-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #00bfa5;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.faq-header p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

.faq-divider {
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0073aa, #00bfa5);
  margin: 25px auto 0;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

/* Cards */
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: #00bfa5;
  box-shadow: 0 16px 36px rgba(0, 191, 165, 0.15);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.faq-item p {
  color: #475569;
  margin: 0;
  line-height: 1.6;
}




/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:900px){
  .ggr-premium-hero{padding:110px 0 80px;}
  .ggr-premium-hero .container{grid-template-columns:1fr;text-align:center;gap:40px;}
  .hero-search{flex-direction:column;}
  .hero-search input{margin-bottom:12px;border-radius:12px;}
  .hero-search button{width:100%;border-radius:12px;}
  .hero-right img{max-width:380px;margin:0 auto;}
}
@media (min-resolution:2dppx){
  .site-logo img{
    content:url('/wp-content/uploads/get-genuine-review-logo@2x.png');
  }
}
@media (max-width:768px){
  .ggr-topbar{display:none;}
  .scroll-btn { display: none; }
   .ggr-scroll-wrapper { padding: 0; }
  .inside-header{padding:10px 16px !important;}
  .site-logo img{max-height:40px !important;}
  .main-navigation .main-nav{display:none !important;}
  .menu-toggle{display:flex !important;order:-1;margin-right:auto;}
  .main-navigation.toggled .main-nav{
    display:block !important;width:100%;
    left:0;top:60px;background:#fff;padding:20px 0;
    border-top:1px solid #e5e7eb;
    position:absolute;animation:fadeIn .3s ease;
    box-shadow:0 8px 18px rgba(0,0,0,.08);z-index:99999;
  }
  @keyframes fadeIn{from{opacity:0;transform:translateY(-10px);}to{opacity:1;transform:translateY(0);}}
}
@media (prefers-reduced-motion:reduce){
  *{transition:none !important;animation:none !important;}
}

/* Tablet */
@media (max-width: 1024px) {
  .ggr-top-categories {
    padding: 80px 0 60px;
  }
  .ggr-cat-grid {
    gap: 24px;
  }
  .ggr-cat-card {
    padding: 18px 14px 22px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .ggr-top-categories .ggr-section-head {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }
  .ggr-top-categories h2 {
    font-size: 1.8rem;
  }
  .ggr-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile Portrait */
@media (max-width: 500px) {
  .ggr-cat-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ggr-cat-card {
    padding: 16px 14px 22px;
  }
  .ggr-cat-card h3 {
    font-size: 1rem;
  }
  .ggr-cat-card p {
    font-size: 0.85rem;
  }
}
@media (max-width: 900px) {
  .ggr-latest-section { padding: 80px 0; }
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ggr-latest-section { padding: 90px 0; }
  .ggr-section-head h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .ggr-latest-section { padding: 70px 0; }
  .ggr-section-head { margin-bottom: 36px; }
  .ggr-card-content { padding: 18px 20px 24px; }
}
@media (max-width: 480px) {
  .ggr-section-head h2 { font-size: 1.7rem; }
  .ggr-card-content h3 { font-size: 0.95rem; }
  .ggr-card-content p { font-size: 0.88rem; }
}

@media (max-width: 1024px) {
  .ggr-compare-table {
    min-width: 680px;
  }
}

@media (max-width: 768px) {
  .ggr-compare-section {
    padding: 70px 0;
  }
  .ggr-compare-table th,
  .ggr-compare-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .author-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .author-avatar img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.6rem;
  }
  .faq-item {
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .author-card.pro-style {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .author-avatar img {
    width: 90px;
    height: 90px;
  }
}