/*
Theme Name: popularfx-child
Template: popularfx
*/
:root {
  --primary-green: #2d5a27;
  --light-green: #6b8e23;
  --sage-green: #9caf88;
  --cream: #f8f6f0;
  --warm-beige: #f4f1e8;
  --soft-gold: #d4af37;
  --text-dark: #2c3e50;
  --text-light: #666;
  --white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
  min-height: 100vh;
}
/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(157, 175, 136, 0.2);
}
.custom-logo {
  max-width: 80px;
}
.site-header .site-main {
  padding: 0 2rem;
}
.site-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Main Content */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
/* Hero Section */
.entry-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.35;
}
.hero {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-style: italic;
}
/* Section Headings */
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 2rem 0 1rem 0;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--soft-gold), var(--sage-green));
  border-radius: 2px;
}
/* Shop Groups */
.shop-group,
.shop-group2 {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px var(--shadow-light);
  border: 1px solid rgba(157, 175, 136, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.shop-group::before,
.shop-group2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--soft-gold), var(--sage-green), var(--light-green));
}
.shop-group:hover,
.shop-group2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}
.shop-group2 {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}
/* Shop Title Sections */
.shot-title h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.shot-title ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-light);
}
.shot-title li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.shot-title li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  top: 0;
}
/* Shop More Sections */
.shop-more {
  background: var(--warm-beige);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--soft-gold);
}
.shop-more h3 {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.shop-more ul {
  list-style: none;
}
.shop-more li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}
.shop-more li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
}
/* Comparison Table */
.wp-block-table {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin: 0;
}
th {
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  color: var(--white);
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}
td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(157, 175, 136, 0.1);
}
tr:nth-child(even) {
  background: var(--cream);
}
tr:hover {
  background: var(--warm-beige);
  transition: background-color 0.3s ease;
}
/* Tips Section */
.check-list {
  list-style: none;
  margin: 1.5rem 0;
}
.check-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}
.check-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}
/* Blockquote */
blockquote {
  background: var(--warm-beige);
  border-left: 5px solid var(--soft-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 10px;
  font-style: italic;
  position: relative;
}
blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--soft-gold);
  position: absolute;
  top: -10px;
  left: 1rem;
  opacity: 0.3;
}
/* Footer */
.site-footer {
  background: var(--primary-green);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}
.site-footer a {
  color: var(--sage-green);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--soft-gold);
}
/* Responsive Design */
@media (max-width: 768px) {
  .site-main {
    padding: 1rem;
  }
  .shop-group,
  .shop-group2 {
    padding: 1.5rem;
  }
  .text-r {
    flex-direction: column;
  }
  .text-l {
    flex-direction: column-reverse;
  }
  .entry-content h1 {
    font-size: 2.5rem;
  }
  .hero {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  th,
  td {
    padding: 0.5rem;
  }
  .shop-group .wp-block-columns {
    flex-direction: column;
  }
  .shop-group2 .wp-block-columns {
    flex-direction: column-reverse;
  }
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shop-group,
.shop-group2 {
  animation: fadeInUp 0.6s ease-out;
}
/* Scroll Animations */
.shop-group:nth-child(odd) {
  animation-delay: 0.1s;
}
.shop-group:nth-child(even) {
  animation-delay: 0.2s;
}
/* Link Styles */
a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--light-green);
}
/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999999;
  padding: 8px 16px;
  background: var(--primary-green);
  color: var(--white);
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
  top: 7px;
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
