 :root {
      --black: #000000;
      --white: #ffffff;
      --lilac: #c5b0e5;
      --light-lilac: #e5dbff;
      --purple: #764ba2;
      --gray-500: #6b7280;
      --gray-600: #4b5563;
      --gray-700: #374151;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      color: var(--black);
      margin: 0;
      padding: 0;
      line-height: 1.6;
      min-height: 100vh;
      background: #fafafa;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      z-index: 1000;
      transition: all 0.3s ease;
       border-bottom: 1px solid #e5e5e5;
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--black);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
      justify-content: center;
    }

    .nav-links a {
      color: var(--black);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.2s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--lilac);
    }




    /* Main Layout */
    .main-layout {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      max-width: 1400px;
      margin: 100px auto 0;
      padding: 2rem;
    }

    .article-content {
      flex: 1;
      background: white;
      border-radius: 24px;
      padding: 3rem;
    }




    /* Article Header */
    .article-header {
      margin-bottom: 3rem;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: #000;
    }

    .breadcrumb a {
      color: var(--lilac);
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .article-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 1rem;
      line-height: 1.2;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      color: #000;
      font-size: 0.875rem;
    }

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

    .article-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .tag {
      color: #000;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 500;
    }



    /* Creator Info Card */
    .creator-info-card {
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 3rem;
      display: grid;
      grid-template-columns: 200px 1fr auto;
      gap: 2rem;
      align-items: center;
    }

    .creator-avatar {
      width: 100%;
      height: 250px;
      border-radius: 30px;
      object-fit: cover;
    }

    .creator-details h3 {
      font-size: 1.5rem;
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .creator-username {
      color: var(--purple);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .creator-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .stat {
      font-size: 0.875rem;
      color: #000;
    }

    .stat strong {
      color: var(--black);
    }

    .overall-score {
      text-align: center;
    }

    .score-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--lilac);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.5rem;
    }

    .score-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
    }

    .score-label {
      font-size: 0.875rem;
      color: #000;
      font-weight: 600;
    }

    /* Article Content */
    .article-body h2 {
      font-size: 1.75rem;
      color: var(--black);
      margin: 2rem 0 1rem 0;
      font-weight: 600;
    }

    .article-body h3 {
      font-size: 1.25rem;
      margin: 1.5rem 0 0.75rem 0;
      font-weight: 600;
    }

    .article-body p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
      color: #000;;
    }

    .article-body ul, .article-body ol {
      margin: 1rem 0 1.5rem 2rem;
      color: #000;
    }

    .article-body li {
      margin-bottom: 0.5rem;
    }

    .highlight-box {
      padding: 1.5rem;
      border-radius: 0 12px 12px 0;
    }

    .highlight-box h4 {
      color: var(--purple);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

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

    .pros, .cons {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      border: 2px solid;
    }

    .pros {
      border-color: #000;
    }

    .cons {
      border-color: #000;
    }

    .pros h4 {
      color: var(--purple);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .cons h4 {
      color: var(--purple);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .rating-breakdown {
      border-radius: 16px;
      padding: 2rem;
      margin: 2rem 0;
    }

    .rating-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #e5e7eb;
    }

    .rating-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .rating-bar {
      width: 200px;
      height: 8px;
      background: #e5e7eb;
      border-radius: 4px;
      overflow: hidden;
      margin-left: 1rem;
    }

    .rating-fill {
      height: 100%;
      background: var(--lilac);
      transition: width 0.3s ease;
    }

    /* Call to Action */
    .cta-section {
      color: white;
      border-radius: 16px;
      text-align: center;
    }

    .cta-section h3 {
      margin-bottom: 1rem;
    }

    .cta-button {
      background: var(--black);
      color: var(--white);
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: var(--lilac);
      transform: translateY(-2px);
    }

    .cta-section p {

      font-size: 0.875rem; 
      margin-top: 1rem; 
      opacity: 0.8;">

    }



    /* Sidebar */
    .sidebar {
      width: 300px;
      flex-shrink: 0;
    }

    .sidebar-section {
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .sidebar-section button {
      border-radius: 24px;
    }

    .sidebar-title {
      font-size: 1.2rem;
      color: var(--black);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .related-review {
      display: flex;
      gap: 1rem;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    .related-avatar {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      object-fit: cover;
    }

    .related-info h4 {
      font-size: 0.9rem;
      color: var(--black);
      margin-bottom: 0.25rem;
    }

    .related-score {
      font-size: 0.8rem;
      color: var(--purple);
      font-weight: 600;
    }


     /* Product Card Base Styling */
    .product-card {
      border: 1px solid #e9ecef;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 35rem;
      transition: all 0.3s ease;
      background: white;
      text-align: center;

     position: relative;
     overflow: hidden;
    }

    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .product-image {
      width: 100%;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #666;
      position: relative;
      overflow: hidden;
      background: #f7f7f7;
    }



    .product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image img {
  display: block;      
  width: 100%;
  height: 100%;
  object-fit: cover;   
}


    .banner-card {
      border: 1px solid #e9ecef;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 5rem;
      transition: all 0.3s ease;
      background: white;
      text-align: center;
    }

    .banner-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .banner-image {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #666;
      position: relative;
      overflow: hidden;
      background: #f7f7f7;
    }

    .banner-image img {

      width: 100%; 
      height: 100%; 
      object-fit: cover;
    }


  .grid-gap-sm-text {
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
}

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-info {
      padding: 1rem;
    }

    .product-title {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      color: #1a1a1a;
      line-height: 1.3;
    }

    .product-description {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    /* SextPanther Features */
    .sextpanther-features {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin: 0.8rem 0;
    }

    .product-feature {
      background: rgba(197, 176, 229, 0.1);
      color: #000;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .product-audiences {
      margin: 1rem 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .product-audience {
      background: rgba(197, 176, 229, 0.15);
      padding: 0.5rem;
      border-radius: 8px;
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .product-audience strong {
      color: var(--purple);
      font-weight: 700;
    }

    /* Fixed visibility for affiliate links */
    .affiliate-link {
      display: block;
      background: #c5b0e5 !important;
      color: white !important;
      text-decoration: none;
      padding: 0.75rem;
      border-radius: 24px;
      text-align: center;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }

    .affiliate-link:hover {
      background: #a691d4 !important;
      transform: translateY(-1px);
    }

    .sextpanther-link {
      background: var(--purple) !important;
      color: white !important;
    }

    .sextpanther-link:hover {
      background: #000 !important;
    }


/* Sidebar Newsletter Styles */
.sidebar-newsletter {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

.newsletter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  text-align: center;
}

.newsletter-description {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

.newsletter-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input-sidebar {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 25px;
  background-color: #ffffff;
  color: var(--black);
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.newsletter-input-sidebar:focus {
  outline: none;
  border-color: var(--lilac);
}

.newsletter-input-sidebar::placeholder {
  color: #9ca3af;
}

.newsletter-btn-sidebar {
  background-color: var(--black);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-btn-sidebar:hover {
  background-color: var(--lilac);
  transform: translateY(-1px);
}

.gdpr-consent-sidebar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 0.5rem;
}

.gdpr-checkbox-sidebar {
  display: none;
}

.gdpr-label-sidebar {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  gap: 8px;
  line-height: 1.4;
}

.gdpr-checkmark-sidebar {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #6b7280;
  border-radius: 3px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.gdpr-checkbox-sidebar:checked + .gdpr-label-sidebar .gdpr-checkmark-sidebar {
  background-color: var(--lilac);
  border-color: var(--lilac);
}

.gdpr-checkbox-sidebar:checked + .gdpr-label-sidebar .gdpr-checkmark-sidebar::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gdpr-text-sidebar {
  font-size: 0.75rem;
  color: var(--gray-600);
  flex: 1;
}



    /* Table of Contents */
    .toc {
      border : 2px solid #e5dbff;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }

    .toc h3 {
      color: var(--purple);
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

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

    .toc li {
      margin-bottom: 0.5rem;
    }

    .toc a {
      color: var(--gray-700);
      text-decoration: none;
      font-size: 0.9rem;
    }

    .toc a:hover {
      color: var(--lilac);
      text-decoration: underline;
    }


  

    /* Footer */
    .footer {
      background-color: #000000;
      color: #ffffff;
      padding: 4rem 0 2rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      font-size: 16px;
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: #ffffff;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    .footer-links a:hover {
      opacity: 0.7;
    }
