@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary: #00d2ff;
  --primary-dark: #00a8cc;
  --secondary: #9d50bb;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --danger: #ef4444;
  --success: #10b981;
  --glass: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  animation: fadeIn 0.6s ease forwards;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  margin-right: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a, .dropdown-toggle {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

.nav-links a:hover, .dropdown:hover .dropdown-toggle {
  color: var(--primary);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 0.8rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1.2rem !important;
  color: var(--text-muted) !important;
  border-radius: 0.6rem;
  font-size: 0.8rem !important;
  white-space: nowrap;
  height: auto !important;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--primary) !important;
  transform: translateX(5px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.admin-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.admin-btn:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
  border-color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  position: relative;
  transition: all 0.3s;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s;
}

.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

.hamburger.open { background: transparent; }
.hamburger.open::before { transform: rotate(45deg); }
.hamburger.open::after { transform: rotate(-45deg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 100;
  }

  .nav-links.mobile-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .admin-text {
    display: none;
  }
  
  .admin-btn {
    padding: 0.5rem;
    border-radius: 50%;
  }
}

/* Grid System */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(0, 210, 255, 0.3);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.card-content {
  padding: 1.5rem;
}

.rating {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  color: white;
  margin-bottom: 1rem;
}

input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Review Detail New Layout */
.review-header-custom {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.score-box-container {
  display: flex;
  flex-direction: column;
}

.score-box {
  background: var(--primary);
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  line-height: 1;
  text-align: center;
}

.score-label {
  background: #000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  letter-spacing: 1px;
}

.review-title-block h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.review-title-block p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px dashed var(--glass-border);
}

.criterion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.criterion-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 1s ease-out;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.pros-cons-col h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pros-cons-list {
  list-style: none;
  padding: 0;
}

.pros-cons-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  color: var(--text-main);
}

/* WP Gallery Grid Layout */
.content-rendered .blocks-gallery-grid,
.content-rendered .wp-block-gallery.has-nested-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 2rem 0 !important;
  padding: 0;
  width: 100%;
}

.content-rendered .wp-block-gallery {
  margin: 2rem 0 !important;
}

.content-rendered .blocks-gallery-item,
.content-rendered .wp-block-gallery.has-nested-images .wp-block-image {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.content-rendered .blocks-gallery-item figure,
.content-rendered .wp-block-gallery.has-nested-images .wp-block-image figure {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.content-rendered .blocks-gallery-item img,
.content-rendered .wp-block-gallery.has-nested-images .wp-block-image img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
  transition: transform 0.3s ease;
  display: block !important;
  margin: 0 !important;
  border-radius: 8px !important;
  cursor: zoom-in;
}

.content-rendered .blocks-gallery-item:hover img,
.content-rendered .wp-block-gallery.has-nested-images .wp-block-image:hover img {
  transform: scale(1.05);
}



/* Typography Improvements */
.content-rendered > figure:first-child {
  display: none; /* Hide the large top image */
}

.content-rendered h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.content-rendered h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.content-rendered p {
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.content-rendered img, 
.content-rendered figure, 
.content-rendered .wp-block-image {
  max-width: 100% !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.content-rendered img {
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  display: block;
}

.content-rendered ul, .content-rendered ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-rendered li {
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Amazon Affiliate Button - Premium Version */
.amazon-affiliate-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  padding: 5px;
  border-radius: 12px;
  text-decoration: none;
  margin: 3rem 0;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 550px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.amazon-affiliate-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(16, 185, 129, 0.5);
  background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
}

.awin-affiliate-btn {
  display: flex;
  align-items: center;
  background: #9d50bb;
  color: #fff;
  padding: 5px;
  border-radius: 12px;
  text-decoration: none;
  margin: 1rem 0;
  box-shadow: 0 10px 25px -5px rgba(157, 80, 187, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 550px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.awin-affiliate-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(157, 80, 187, 0.5);
}

.awin-merchant {
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.awin-text {
  flex: 1;
  color: #fff;
  padding: 0 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awin-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.amazon-affiliate-btn .amz-logo {
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -1px;
}

.amazon-affiliate-btn .amz-logo::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23f90" d="M13.6 15.6c-2.3 1.8-5.3 2.6-8.2 2.1-1.3-.2-2.4-.8-3.3-1.6-.3-.3-.4-.7-.1-1 .2-.3.6-.3.9 0 1.9 1.6 4.7 2 7 .9 1.6-.7 3-1.8 4.2-3.1.2-.3.7-.3 1 0 .2.3.2.7-.1 1-1.3 1.5-2.8 2.8-4.5 3.9-.3-.5-.6-1-.9-1.5.8.5 1.6.8 2.5 1l-.5-1c-.1.3-.3.6-.4.9z"/></svg>') no-repeat center;
  margin-left: 4px;
}

.amazon-affiliate-btn .amz-text {
  flex: 1;
  color: #fff;
  padding: 0 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amazon-affiliate-btn .amz-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

/* Navbar Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  min-width: 200px;
  border-radius: 0.5rem;
  padding: 0.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  border-radius: 0.3rem;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: rgba(0, 210, 255, 0.1);
  color: var(--primary);
}

.nav-links .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
/* Hero Section */
.hero-section {
  padding: 5rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  margin-bottom: 4rem;
  border-radius: 2rem;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: -1px;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-main);
}

/* Pro Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.pro-card {
  position: relative;
  background: var(--glass);
  border-radius: 1.2rem;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pro-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(0, 210, 255, 0.2);
}

.pro-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #1e293b;
}

.pro-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pro-card:hover .pro-card-img {
  transform: scale(1.08);
}

.pro-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 0.8rem;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.pro-card-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pro-card-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.pro-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-main);
}

.pro-card-verdict {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  WebkitLineClamp: 3;
  WebkitBoxOrient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.pro-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.pro-card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pro-card-link:hover {
  text-decoration: underline;
}

.review-main-card {
  padding: 3rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
}

.review-verdict-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.review-price-badge {
  background: var(--primary);
  color: #000;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  fontWeight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }

  .navbar .container {
    padding: 0 1.2rem;
  }

  .hero-section {
    padding: 3rem 1.2rem;
    border-radius: 0;
    margin: 0 -1.2rem 2rem -1.2rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pro-card-content {
    padding: 1.2rem;
  }

  .review-header-custom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .review-main-card {
    padding: 1.5rem;
  }

  .review-title-block h1 {
    font-size: 1.6rem;
  }

  .review-verdict-row {
    flex-direction: column;
    gap: 1rem;
  }

  .review-main {
    flex-direction: column;
  }

  .review-content {
    padding: 1rem !important;
  }

  .review-image-wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .pro-card-title {
    font-size: 1.2rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
}

/* Premium Price Table Styles */
.price-table-container {
  background: #111418;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #2d3436;
  margin: 50px 0;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.price-table-header {
  color: #fff;
  margin-top: 0;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #00ffa3;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 900;
}

.price-table-subheader {
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 30px;
  display: block;
}

.price-row {
  background: #1c1f24;
  border: 1px solid #2d3436;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.price-row:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: #00ffa3;
  box-shadow: 0 12px 30px rgba(0, 255, 163, 0.15);
  background: #23272d;
}

.merchant-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.merchant-logo {
  background: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border: 2px solid #2d3436;
  transition: transform 0.3s ease;
}

.price-row:hover .merchant-logo {
  transform: rotate(5deg);
}

.merchant-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.merchant-name-box {
  display: flex;
  flex-direction: column;
}

.merchant-name {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.stock-status {
  font-size: 11px;
  color: #00ffa3;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.price-value-container {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 30px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-value {
  color: #00ffa3;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.price-condition {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 700;
}

.price-btn {
  background: linear-gradient(90deg, #00ffa3 0%, #00d186 100%);
  color: #000 !important;
  padding: 14px 28px;
  text-decoration: none !important;
  border-radius: 10px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 163, 0.5);
  transform: scale(1.05);
}

.price-footer {
  margin-top: 2rem;
}

.price-footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.adblock-box {
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .price-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .merchant-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  .price-value-container {
    padding: 0;
  }
}

/* =============================================
   HOMEPAGE - Hero Spotlight + Redesigned Cards
   ============================================= */

.hero-spotlight {
  padding: 5rem 0 3rem;
}

.spotlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem;
  border-radius: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.07) 0%, rgba(30, 41, 59, 0.95) 60%);
}

.spotlight-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.spotlight-text {
  position: relative;
  z-index: 1;
}

.badge-new {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.spotlight-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.spotlight-excerpt {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.spotlight-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.spotlight-content:hover .spotlight-image img {
  transform: scale(1.04) translateY(-5px);
}

.btn-primary-pro {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--primary);
  color: #000 !important;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

.btn-primary-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.4);
  background: var(--accent);
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.view-all {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.view-all:hover {
  gap: 0.8rem;
}

/* Redesigned Cards */
.card-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  background: #1e293b;
  overflow: hidden;
}

.card-img-container .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.08);
}

.card-rating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.card-brand {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.card-category {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
}

.card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.read-more {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.5px;
}

/* Content images in review */
.img-pro {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 550px;
  border-radius: 1rem;
  margin: 2.5rem auto;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  object-fit: contain;
  background: rgba(255,255,255,0.02);
}

@media (max-width: 768px) {
  .spotlight-content {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }
  .spotlight-title {
    font-size: 2rem;
  }
  .spotlight-image img {
    max-height: 280px;
  }
}

/* Gallery Grid System */
.blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.blocks-gallery-grid figure {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0,0,0,0.2);
}

.blocks-gallery-grid figure:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 210, 255, 0.2);
}

.blocks-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s ease;
}

.blocks-gallery-grid figure:hover img {
  transform: scale(1.1);
}

/* =============================================
   REVIEW VIDEO EMBED & GALLERY CAPTIONS
   ============================================= */

.review-video-block {
  margin: 3rem 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.3);
}

.review-video-label {
  padding: 1rem 1.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(0, 210, 255, 0.05);
  border-bottom: 1px solid var(--glass-border);
}

.review-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.review-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery figcaption */
.content-rendered .wp-block-gallery.has-nested-images .wp-block-image figcaption,
.review-gallery .wp-block-image figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  font-style: italic;
}

/* Photo sample block */
.photo-sample-block {
  margin: 2.5rem 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.photo-sample-label {
  padding: 1rem 1.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--success);
  background: rgba(16, 185, 129, 0.05);
  border-bottom: 1px solid var(--glass-border);
}

.photo-sample-block .img-pro {
  margin: 0;
  border-radius: 0;
  border-top: none;
}

/* =============================================
   COMPREHENSIVE REVIEW BLOCKS
   ============================================= */

.review-summary-box {
  background: rgba(0, 210, 255, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 1rem 1rem 0;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.1rem;
}

.specs-table-mini {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.specs-table-mini h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.specs-table-mini ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.specs-table-mini li {
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lab-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.lab-item {
  background: #0f172a;
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 0.8rem;
  text-align: center;
  font-size: 0.9rem;
}

.lab-item strong {
  display: block;
  color: var(--success);
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.comparison-box {
  background: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 1.2rem;
  padding: 2rem;
  margin: 3rem 0;
}

.comparison-box h3 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 1.5rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.comparison-item {
  padding: 0.8rem;
  background: rgba(0,0,0,0.2);
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

/* =============================================
   AFFILIATE & OFFERS BLOCKS
   ============================================= */

.affiliate-section-pro {
  margin: 4rem 0;
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.affiliate-section-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.affiliate-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.affiliate-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.affiliate-card-pro {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 1.2rem;
  gap: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliate-card-pro:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary);
  transform: translateX(10px);
}

.merchant-logo {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: -1px;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.buy-btn-pro {
  background: var(--primary);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.buy-btn-pro:hover {
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .affiliate-card-pro {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1.5rem;
  }
  .merchant-logo {
    grid-column: 1 / 2;
  }
  .price-tag {
    grid-column: 2 / 3;
    font-size: 1.4rem;
  }
  .buy-btn-pro {
    grid-column: 1 / 3;
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   FOOTER PREMIUM
   ============================================= */

.footer-pro {
  background: #0f172a;
  padding: 6rem 0 3rem;
  margin-top: 5rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-links-col h3, .footer-newsletter h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  color: #fff;
  flex: 1;
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}

.admin-link-small {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary) !important;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* =============================================

   ULTIMATE TECHNICAL DOSSIER STYLING (V4)
   ============================================= */

.expert-test-v4 {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.85;
}

.expert-test-v4 h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 210, 255, 0.2);
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.expert-test-v4 h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 1.2rem;
  color: var(--primary);
}

.expert-test-v4 p {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.expert-test-v4 figure {
  margin: 3.5rem 0;
  text-align: center;
}

.expert-test-v4 figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.expert-test-v4 figure img {
  border-radius: 2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  max-width: 100%;
  height: auto;
}

/* Specs Table Ultimate */
.specs-table-container {
  margin: 4rem 0;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  padding: 2.5rem;
  overflow: hidden;
}

.specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.specs-table th, .specs-table td {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.specs-table th {
  background: rgba(0, 210, 255, 0.1);
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--text-muted);
  width: 30%;
}

/* Verdict Box V4 Overlay */
.verdict-box-ultimate {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}

.verdict-box-ultimate:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 120px rgba(0, 210, 255, 0.2);
}



