/*
Theme Name: vibepicks_theme
Theme URI: https://example.com/my-theme
Author: Your Team
Author URI: https://example.com
Description: Modern, SEO-ready affiliate coupons and deals theme.
Version: 1.0.14
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vibepicks_theme
Tags: custom-colors, custom-logo, custom-menu, featured-images, one-column, two-columns
*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Bricolage+Grotesque:wght@400;500;600;700&display=swap');

:root {
  --electric-cyan: #06b6d4;
  --deep-indigo: #1e1b4b;
  --warm-coral: #f97316;
  --vivid-rose: #ec4899;
  --lime-pop: #84cc16;
  --soft-amber: #fbbf24;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  
  --surface-100: #ffffff;
  --surface-200: #f8fafc;
  --surface-300: #f1f5f9;
  
  --glow-cyan: rgba(6, 182, 212, 0.2);
  --glow-coral: rgba(249, 115, 22, 0.2);
  
  --shadow-soft: 0 2px 20px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 8px 40px rgba(15, 23, 42, 0.12);
  --shadow-intense: 0 20px 60px rgba(15, 23, 42, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--surface-200);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--electric-cyan);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--deep-indigo);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface-100);
  border-bottom: 2px solid transparent;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vibepicks-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vibepicks-logo:hover {
  transform: translateY(-2px);
}

.vibepicks-logo-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px var(--glow-cyan);
  position: relative;
  overflow: visible;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.vibepicks-logo-mark::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  padding: 3px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--vivid-rose), var(--warm-coral));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.5s;
}

.vibepicks-logo:hover .vibepicks-logo-mark::before {
  background: linear-gradient(135deg, var(--warm-coral), var(--vivid-rose), var(--electric-cyan));
}

.vibepicks-logo-mark svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.vibepicks-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--electric-cyan) 60%, var(--warm-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.site-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  margin: 0;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.site-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--vivid-rose));
  transform: translateY(3px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover {
  color: var(--electric-cyan);
  background: var(--surface-200);
}

.site-nav a:hover::before {
  transform: translateY(0);
  opacity: 1;
}

.hero {
  background: var(--deep-indigo);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, var(--electric-cyan) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, var(--warm-coral) 0%, transparent 50%);
  opacity: 0.15;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--surface-100);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--electric-cyan), var(--lime-pop));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 60ch;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.section {
  padding: 0.5rem 0;
}

.section h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  background: linear-gradient(135deg, var(--deep-indigo), var(--electric-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.blog .section h2,
body.home.blog .section h2,
body.archive .section h2 {
  font-size: 1.5rem;
}

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

.card {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  background: var(--surface-100);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--vivid-rose), var(--warm-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-intense);
  border-color: var(--electric-cyan);
}

.card:hover::before {
  transform: scaleX(1);
}

.card .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--electric-cyan), var(--deep-indigo));
  color: var(--surface-100);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--glow-cyan);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--warm-coral), var(--vivid-rose));
  color: var(--surface-100);
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px var(--glow-coral);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
  border-color: var(--surface-100);
  text-decoration: none;
}

.cta:hover::before {
  left: 100%;
}

.blog-hero {
  background: linear-gradient(135deg, var(--deep-indigo) 0%, #312e81 50%, var(--deep-indigo) 100%);
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--electric-cyan) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--warm-coral) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--surface-100);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  font-weight: 500;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

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

.blog-card {
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-100);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--vivid-rose), var(--warm-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--electric-cyan) 0%, var(--vivid-rose) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-intense);
  border-color: var(--electric-cyan);
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card:hover::before {
  opacity: 0.05;
}

.blog-card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 280px;
}

.blog-card-featured .blog-card-thumb-featured {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.blog-card-featured .blog-card-thumb-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-featured:hover .blog-card-thumb-featured img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--warm-coral), var(--vivid-rose));
  color: var(--surface-100);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 24px var(--glow-coral);
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.blog-card-featured .blog-card-content {
  flex: 1;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-title-large {
  font-size: 1.6rem;
  line-height: 1.3;
}

.blog-card-excerpt-large {
  font-size: 1rem;
  line-height: 1.6;
}

.blog-card-thumb img,
.blog-post-thumb img,
.default-post-image,
.content-post-image {
  width: 100%;
  height: 100%;
  object-fit: unset;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card-thumb {
  display: block;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 16 / 10;
}

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

.blog-thumb-placeholder {
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc, #e0f2fe);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.blog-card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.blog-card-title {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.blog-card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: linear-gradient(transparent calc(100% - 3px), var(--electric-cyan) 3px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  display: inline;
}

.blog-card:hover .blog-card-title a,
.blog-card-title a:hover {
  color: var(--electric-cyan);
  background-size: 100% 100%;
}

.blog-card-excerpt {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.blog-card-meta,
.blog-post-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.meta-sep {
  color: #cbd5f5;
}

.blog-cat {
  display: inline-flex;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--electric-cyan), var(--deep-indigo));
  color: var(--surface-100);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px var(--glow-cyan);
  border: 2px solid transparent;
}

.blog-cat:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px var(--glow-cyan);
  border-color: rgba(255, 255, 255, 0.3);
}

.blog-card-cats {
  margin-bottom: 0.5rem;
}

.blog-post {
  background: var(--surface-100);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.blog-post:hover {
  border-color: var(--electric-cyan);
  box-shadow: var(--shadow-hover);
}

.blog-post-content {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.blog-post-content p {
  margin: 1.5rem 0;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.blog-post-content a {
  color: var(--electric-cyan);
  text-decoration: none;
  background-image: linear-gradient(var(--electric-cyan), var(--electric-cyan));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.blog-post-content a:hover {
  background-size: 100% 2px;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-post-content blockquote {
  border-left: 4px solid var(--electric-cyan);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-secondary);
  background: linear-gradient(90deg, var(--surface-200) 0%, transparent 100%);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  position: relative;
}

.blog-post-content blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0.5rem;
  top: 0;
  font-size: 4rem;
  color: var(--electric-cyan);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.blog-post-content code {
  background: linear-gradient(135deg, var(--surface-200), var(--surface-300));
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--warm-coral);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-post-content pre {
  background: var(--deep-indigo);
  color: #e2e8f0;
  padding: 2rem;
  border-radius: 16px;
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.blog-post-content pre code {
  background: none;
  color: inherit;
  padding: 0;
  border: none;
  font-family: 'JetBrains Mono', monospace;
}

.blog-post-tags {
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.blog-share {
  margin-top: 3rem;
  padding: 2rem;
  border: 2px solid var(--electric-cyan);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--surface-100), var(--surface-200));
  position: relative;
  overflow: hidden;
}

.blog-share::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--vivid-rose), var(--warm-coral));
}

.blog-share h3 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--electric-cyan);
  background: var(--surface-100);
  color: var(--text-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'DM Sans', sans-serif;
}

.share-btn:hover {
  border-color: var(--warm-coral);
  color: var(--surface-100);
  background: linear-gradient(135deg, var(--electric-cyan), var(--vivid-rose));
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px var(--glow-cyan);
}

.blog-author-box {
  margin-top: 3rem;
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.author-info p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-related {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid #f1f5f9;
}

.blog-related h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-main);
}

.blog-comments {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid #f1f5f9;
}

body.single-post {
  background: #ffffff;
}

.single-post .site-main {
  position: relative;
}

.single-post .blog-hero {
  padding: 5.5rem 0 4rem;
  background: linear-gradient(135deg, #0f172a 0%, #1b2a3a 45%, #0f172a 100%);
}

.single-post .blog-hero::before {
  right: -20%;
  top: -60%;
  width: 620px;
  height: 620px;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.9) 0%, transparent 70%);
}

.single-post .blog-hero::after {
  left: -15%;
  bottom: -45%;
  width: 520px;
  height: 520px;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.9) 0%, transparent 70%);
}

.single-post .blog-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  letter-spacing: -0.015em;
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
}

.single-post .blog-post-meta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.single-post .blog-cat {
  background: linear-gradient(135deg, #14b8a6, #0ea5a3);
  box-shadow: 0 10px 26px rgba(20, 184, 166, 0.35);
}

.single-post .blog-layout {
  gap: 3rem;
}

.single-post .blog-post {
  border-radius: 26px;
  padding: 3.5rem 3.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.single-post .blog-post-thumb {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  margin-bottom: 2.5rem;
}

.single-post .blog-post-content {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #0f172a;
}

.single-post .blog-post-content :where(p, ul, ol, blockquote, pre, h1, h2, h3, h4) {
  max-width: 70ch;
}

.single-post .blog-post-content > :where(ul, ol) {
  padding-left: 1.4rem;
}

.single-post .blog-post-content pre:last-of-type {
  display: none;
}

.single-post .blog-post-content p:first-of-type {
  font-size: 1.2rem;
  color: #1f2937;
}

.single-post .blog-post-content h1,
.single-post .blog-post-content h2,
.single-post .blog-post-content h3,
.single-post .blog-post-content h4 {
  font-family: 'Fraunces', serif;
  color: #0b1020;
  letter-spacing: -0.01em;
}

.single-post .blog-post-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, var(--deep-indigo), var(--electric-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.single-post .blog-post-content blockquote {
  border-left-color: #14b8a6;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}

.single-post .blog-post-content a {
  color: #ffffff;
  background-image: linear-gradient(#ffffff, #ffffff);
}

.single-post .blog-post-content > div:nth-child(1) > div > div > div.row.p-3 > div.col.ps-xl-3 > div.cegg-card-button.p-0.pt-2.d-grid.col-sm-12.col-md-8 {
  color: #ffffff;
}

.single-post .blog-post-content > div:nth-child(1) > div > div > div.row.p-3 > div.col.ps-xl-3 > div.cegg-card-button.p-0.pt-2.d-grid.col-sm-12.col-md-8 a,
.single-post .blog-post-content > div:nth-child(1) > div > div > div.row.p-3 > div.col.ps-xl-3 > div.cegg-card-button.p-0.pt-2.d-grid.col-sm-12.col-md-8 button {
  color: #ffffff;
}

.single-post .blog-share {
  border-radius: 22px;
  border-color: rgba(15, 118, 110, 0.35);
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
}

.single-post .share-btn {
  border-color: rgba(15, 118, 110, 0.4);
}

.single-post .share-btn:hover {
  background: linear-gradient(135deg, #14b8a6, #f97316);
  border-color: transparent;
}

.single-post .blog-related h3,
.single-post .blog-comments {
  font-family: 'Fraunces', serif;
}

.single-post .blog-comments {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.single-post .comments-area {
  max-width: 720px;
}

.single-post .comments-title {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
}

.single-post .comment-list {
  margin-bottom: 1.25rem;
}

.single-post .comment-list .comment {
  margin-bottom: 0.75rem;
}

.single-post .comment-body {
  grid-template-columns: 36px 1fr;
  gap: 0.6rem;
  padding: 0.85rem;
}

.single-post .comment-author-avatar img {
  width: 36px;
  height: 36px;
}

.single-post .comment-meta {
  margin-bottom: 0.35rem;
}

.single-post .comment-text {
  margin: 0.35rem 0;
  font-size: 0.92rem;
}

.single-post .reply a {
  padding: 0.35rem 0.7rem;
}

.single-post .comment-respond-wrapper {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 10px;
}

.single-post .comment-reply-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.single-post .comment-reply-title small {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.single-post .comment-form {
  gap: 0.6rem;
}

.single-post .comment-form-fields {
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.single-post .comment-form label {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="number"],
.single-post .comment-form textarea {
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.single-post .comment-form textarea {
  min-height: 72px;
}

.single-post .comment-form-cookies-consent {
  gap: 0.35rem;
  font-size: 0.85rem;
}

.single-post .comment-form-cookies-consent label {
  font-size: 0.85rem;
}

.single-post .field-note {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.single-post .form-submit {
  margin: 0.5rem 0 0;
}

.single-post .submit-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.single-post .blog-related {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.single-post .blog-related h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.single-post .blog-related .blog-grid {
  gap: 1rem;
}

.single-post .blog-related .blog-card {
  border-radius: 16px;
}

.single-post .blog-related .blog-card-thumb {
  aspect-ratio: 16 / 7;
}

.single-post .blog-related .blog-card-content {
  padding: 1rem;
  gap: 0.6rem;
}

.single-post .blog-related .blog-card-title {
  font-size: 1.05rem;
}

.single-post .blog-related .blog-card-excerpt {
  font-size: 0.92rem;
}
}

.blog-sidebar {
  position: sticky;
  top: 110px;
}

.blog-widget {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.blog-widget:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.blog-widget-title {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
  color: var(--text-main);
}

.blog-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-widget li {
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #f8fafc;
}

.blog-widget li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-widget li a {
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.blog-widget li a:hover {
  color: var(--brand-primary);
  padding-left: 0.5rem;
}

.blog-widget li .post-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
  margin-top: 0.25rem;
}

.vibepicks-search-form {
  margin: 0;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.vibepicks-search-form .search-field,
.vibepicks-search-form input[type="search"] {
  width: 100%;
  padding: 0.85rem 1rem;
  padding-right: 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.vibepicks-search-form .search-field:focus,
.vibepicks-search-form input[type="search"]:focus {
  outline: none;
  border-color: #06b6d4;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15), 0 4px 16px rgba(6, 182, 212, 0.1);
}

.vibepicks-search-form .search-submit,
.vibepicks-search-form button[type="submit"] {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.25);
}

.vibepicks-search-form .search-submit:hover,
.vibepicks-search-form button[type="submit"]:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
}

.vibepicks-search-form svg {
  width: 18px;
  height: 18px;
}

.tagcloud a {
  display: inline-block;
  margin: 0.25rem 0.3rem 0.25rem 0;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tagcloud a:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.blog-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 44px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.blog-pagination .page-numbers:hover:not(.current) {
  border-color: #06b6d4;
  color: #06b6d4;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.blog-pagination .current {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border-color: #06b6d4;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.blog-pagination .dots {
  border: none;
  pointer-events: none;
}

@media (max-width: 980px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-card-featured {
    flex-direction: column;
    min-height: auto;
  }

  .blog-card-featured .blog-card-thumb-featured {
    flex: none;
    height: 280px;
  }

  .blog-card-featured .blog-card-content {
    padding: 1.5rem;
  }

  .blog-card-title-large {
    font-size: 1.5rem;
  }

  .blog-card-excerpt-large {
    font-size: 1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .single-post .blog-post {
    padding: 2rem 1.75rem;
  }

  .blog-author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .blog-card-featured .blog-card-thumb-featured {
    height: 200px;
  }

  .blog-card-title-large {
    font-size: 1.3rem;
  }

  .blog-post {
    padding: 1.25rem;
  }

  .single-post .blog-post {
    padding: 1.5rem 1.25rem;
  }
  
  .blog-post-content {
    font-size: 1rem;
  }

  .blog-post-content img {
    margin: 1rem auto;
    border-radius: 8px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

  .blog-pagination .page-numbers {
    padding: 0.5rem 0.75rem;
    min-width: 40px;
    font-size: 0.9rem;
  }

  .featured-badge {
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-hero p {
    font-size: 1rem;
  }

  .single-post .blog-hero h1 {
    font-size: 2.1rem;
  }
}

.site-footer {
  background: #111827;
  color: #fff;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1.5rem;
  column-gap: 2.5rem;
}

.footer-grid a {
  color: #e5e7eb;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #fff;
}

/* Social Links Styling */
.my-plugin-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-link-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.offer-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.single-offer-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.single-offer-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.single-offer-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}

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

.taxonomy-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.taxonomy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #ec4899, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.taxonomy-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border-color: #06b6d4;
}

.taxonomy-card:hover::before {
  transform: scaleX(1);
}

.category-card {
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.category-card:hover {
  background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
}

.category-icon {
  font-size: 2.8rem;
  line-height: 1;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.category-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.category-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.category-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(6, 182, 212, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.category-cta:hover::before {
  left: 100%;
}

.category-cta span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.category-cta:hover span {
  transform: translateX(4px);
}

.brand-card {
  text-align: center;
}

.brand-logo-wrapper {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  padding: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.taxonomy-card:hover .brand-logo-wrapper {
  border-color: #06b6d4;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}

.brand-logo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
}

.brand-logo-placeholder {
  background: linear-gradient(135deg, #06b6d4, #ec4899, #f97316);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Sora', sans-serif;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.brand-card .taxonomy-header {
  display: block;
  text-align: center;
}

.brand-card .taxonomy-header h3 {
  flex: none;
}

.taxonomy-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.taxonomy-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  flex: 1;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
}

.category-card .taxonomy-header {
  display: block;
}

.category-card .taxonomy-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.taxonomy-header h3 a {
  color: #0f172a;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 3px), #06b6d4 3px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline;
}

.taxonomy-header h3 a:hover {
  color: #06b6d4;
  background-size: 100% 100%;
}

.taxonomy-count {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #0891b2;
  border: 2px solid #bae6fd;
  letter-spacing: 0.3px;
}

.taxonomy-description {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.taxonomy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.taxonomy-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.taxonomy-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(6, 182, 212, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.taxonomy-link:hover::before {
  left: 100%;
}

.brands-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  justify-content: center;
}

.alphabet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.alphabet-link:hover {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border-color: #06b6d4;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.brands-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.brands-letter {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #06b6d4, #ec4899, #f97316) 1;
  letter-spacing: -0.02em;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.page-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.page-content em {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* =============================================
   Single Offer Page Styles
   ============================================= */

.single-offer-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin-bottom: 3rem;
}

.single-offer-main {
  min-width: 0;
}

.single-offer-header {
  margin-bottom: 2rem;
}

.single-offer-logo {
  margin-bottom: 1.5rem;
}

.single-offer-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 1rem;
}

.single-offer-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.single-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.single-badge-brand {
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  color: #1e3a8a;
}

.single-badge-category {
  background: #f3f4f6;
  color: #4b5563;
}

.single-badge-status {
  font-weight: 700;
}

.single-badge-active {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
}

.single-badge-expiring-soon {
  background: linear-gradient(135deg, #fed7aa 0%, #fbbf24 100%);
  color: #78350f;
  animation: pulse 2s ease-in-out infinite;
}

.single-badge-upcoming {
  background: linear-gradient(135deg, #e9d5ff 0%, #c4b5fd 100%);
  color: #5b21b6;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.single-offer-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 1rem 0;
}

.single-offer-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #4b5563;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.single-offer-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
}

.single-offer-description p {
  margin-bottom: 1rem;
}

.single-offer-terms {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.single-offer-terms h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 1rem 0;
}

.terms-content {
  font-size: 0.9rem;
  color: #78350f;
  line-height: 1.6;
}

.terms-content p {
  margin-bottom: 0.5rem;
}

.single-offer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #6b7280;
}

.stat-item strong {
  font-weight: 700;
  color: #111827;
}

/* Sidebar Styles */
.single-offer-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.single-offer-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.single-offer-type-badge {
  text-align: center;
  margin-bottom: 1.5rem;
}

.single-offer-type-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-coupon-display {
  margin-bottom: 1.5rem;
  text-align: center;
}

.single-coupon-display label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-code-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px dashed #0ea5e9;
  border-radius: 12px;
  color: #0c4a6e;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.single-code-btn:hover {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-color: #0284c7;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.scissor-icon {
  font-size: 1.2rem;
}

.code-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  font-style: italic;
}

.single-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
  text-decoration: none;
}

.single-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.4);
  text-decoration: none;
}

.single-voting {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.voting-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 1rem;
}

.offer-votes-inline {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.vote-btn-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vote-btn-inline:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: scale(1.05);
}

.vote-btn-inline[data-vote="up"]:hover {
  background: #dcfce7;
  border-color: #10b981;
  color: #065f46;
}

.vote-btn-inline[data-vote="down"]:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
}

.vote-btn-inline .vote-count {
  font-weight: 700;
}

.single-offer-share {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
}

.single-offer-share h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-btn {
  padding: 0.75rem 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.share-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.single-offer-related {
  margin-top: 3rem;
}

.related-heading {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.related-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
  border-radius: 2px;
}

.single-offer-comments {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}

/* =============================================
   Comments Section Styles
   ============================================= */

.comments-area {
  max-width: 900px;
  margin: 0 auto;
}

.comments-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.comment-list .comment {
  margin-bottom: 2rem;
}

.comment-body {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.comment-author-avatar img {
  border-radius: 50%;
  display: block;
}

.comment-content-wrap {
  min-width: 0;
}

.comment-meta {
  margin-bottom: 0.75rem;
}

.comment-author {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.comment-metadata {
  font-size: 0.85rem;
  color: #6b7280;
}

.comment-metadata a {
  color: #6b7280;
  text-decoration: none;
}

.comment-metadata a:hover {
  color: #1d4ed8;
}

.comment-awaiting-moderation {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 6px;
  font-size: 0.85rem;
  font-style: normal;
}

.comment-text {
  margin: 0.75rem 0;
  color: #374151;
  line-height: 1.6;
}

.comment-text p {
  margin-bottom: 0.5rem;
}

.reply {
  margin-top: 0.75rem;
}

.reply a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.reply a:hover {
  background: #f3f4f6;
  border-color: #1d4ed8;
  color: #1d4ed8;
}

.comment-respond-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
}

.comment-reply-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1.5rem 0;
}

.comment-reply-title small {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 0.5rem;
}

.comment-form {
  display: grid;
  gap: 1.25rem;
}

.comment-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.comment-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.comment-form .required {
  color: #ef4444;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="number"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="number"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.comment-form input.has-error,
.comment-form textarea.has-error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.comment-form input.has-error:focus,
.comment-form textarea.has-error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  border-radius: 4px;
  color: #991b1b;
  font-size: 0.85rem;
  font-weight: 600;
  animation: slideIn 0.2s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.field-note {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
  font-weight: 400;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comment-form-cookies-consent input {
  width: auto;
  margin: 0;
}

.comment-form-cookies-consent label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: #4b5563;
}

.submit-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

.logged-in-as {
  padding: 1rem;
  background: #f0f9ff;
  border-left: 4px solid #1d4ed8;
  border-radius: 8px;
  color: #1e3a8a;
  font-size: 0.95rem;
}

.logged-in-as a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.logged-in-as a:hover {
  text-decoration: underline;
}

.comments-closed {
  padding: 1.5rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  color: #92400e;
  font-weight: 500;
  text-align: center;
}

.no-comments {
  color: #6b7280;
  font-style: italic;
  text-align: center;
  padding: 1.5rem;
}

/* =============================================
   Contact Form Styles
   ============================================= */

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-compact {
  grid-template-columns: 120px 1fr;
  align-items: end;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}

.form-group .required {
  color: #ef4444;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="number"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.char-count {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
  text-align: right;
  transition: color 0.2s ease;
}

/* Honeypot field - hidden from users */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.submit-btn-contact {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}

.submit-btn-contact .btn-icon {
  font-size: 1.1rem;
}

.submit-btn-contact:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.submit-btn-contact:disabled,
.submit-btn-contact.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-btn-contact.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.5; }
}

.contact-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #ef4444;
  margin-top: 0.5rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-message.success {
  background: #dcfce7;
  border-left-color: #10b981;
  color: #065f46;
}

.contact-message.error {
  background: #fef2f2;
  border-left-color: #ef4444;
  color: #991b1b;
}

.contact-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-info,
.contact-info-full {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.contact-info-full {
  margin: 2rem 0;
  text-align: center;
}

.contact-info h3,
.contact-info-full h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
}

.contact-info p,
.contact-info-full p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-info-full p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-suggestions {
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
  border-left-color: #1d4ed8 !important;
}

.contact-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 1rem 0;
}

.contact-suggestions a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.contact-suggestions a:hover {
  text-decoration: underline;
}

.contact-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.contact-suggestions li {
  padding: 0.5rem 0;
  color: #1e3a8a;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .single-offer-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .single-offer-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .site-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .my-plugin-social {
    justify-content: flex-start;
  }
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }
  .brands-alphabet {
    gap: 0.35rem;
  }
  .alphabet-link {
    width: 36px;
    height: 36px;
  }
  
  .single-offer-title {
    font-size: 1.75rem;
  }
  
  .single-offer-stats {
    gap: 1rem;
  }
  
  .single-offer-cta-card {
    padding: 1.5rem;
  }
  
  .single-code-btn {
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.875rem 1rem;
  }
  
  .comment-form-fields {
    grid-template-columns: 1fr;
  }
  
  .comment-respond-wrapper {
    padding: 1.5rem;
  }
  
  .comment-body {
    grid-template-columns: 40px 1fr;
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-row,
  .form-row-compact {
    grid-template-columns: 1fr;
  }
  
  .contact-info-section,
  .contact-info-full {
    grid-template-columns: 1fr;
  }
  
  .site-footer {
    padding: 1.5rem 0;
  }
  
  .footer-grid h3,
  .footer-grid h4 {
    font-size: 1.1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* No Results / Search Results Styling */
.no-results {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 12px;
  margin: 2rem 0;
}

.no-results h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 700;
}

.no-results p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.no-results .btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.no-results .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 640px) {
  .no-results {
    padding: 2rem 1rem;
  }
  
  .no-results h2 {
    font-size: 1.5rem;
  }
  
  .no-results p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .site-nav ul {
    gap: 0.75rem;
    font-size: 0.9rem;
  }
  
  .footer-grid {
    gap: 1.5rem;
  }
  
  .footer-menu li {
    margin-bottom: 0.4rem;
  }
  
  .my-plugin-social {
    gap: 0.5rem;
  }
}
