/*
Theme Name: Sociavae Child
Template: ittech
Version: 1.0.0
Text Domain: sociavae-child
*/

/* =====================================
   Sociavae – Modern Single Post (Full Width)
   Prefix: sociavae-
   CSS Variables: sociavae-child-
   Title + Breadcrumb + Image + Content
   Comments: approved-only via comments.php
===================================== */

:root{
  --sociavae-child-primary: #6366F1;
  --sociavae-child-primary-dark: #4F46E5;
  --sociavae-child-secondary: #8B5CF6;
  --sociavae-child-accent: #EC4899;
  --sociavae-child-dark: #0F172A;
  --sociavae-child-gray: #334155;
  --sociavae-child-light: #F8FAFC;
  --sociavae-child-white: #FFFFFF;
  --sociavae-child-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  --sociavae-child-gradient-alt: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --sociavae-child-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Legacy variables for compatibility */
  --sociavae-bg: var(--sociavae-child-light);
  --sociavae-card: var(--sociavae-child-white);
  --sociavae-text: var(--sociavae-child-dark);
  --sociavae-muted: var(--sociavae-child-gray);
  --sociavae-line: #e5e7eb;
  --sociavae-accent: var(--sociavae-child-primary);
  --sociavae-accent2: var(--sociavae-child-secondary);
  --sociavae-shadow: var(--sociavae-child-shadow);
  --sociavae-radius: 16px;
}

/* =====================================
   Typography - Poppins for headings, Inter for body
===================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Base body font - Inter */
body {
  font-family: 'Inter', sans-serif;
  color: var(--sociavae-child-gray);
  line-height: 1.6;
}

/* Headings - Poppins */
.sociavae-single h1,
.sociavae-single h2,
.sociavae-single h3,
.sociavae-single h4,
.sociavae-single h5,
.sociavae-single h6,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  color: var(--sociavae-child-dark);
  font-weight: 700;
}

/* =====================================
   Headings Typography – Poppins
   Applies ONLY to headings
===================================== */

/* Ensure Poppins is used */
.sociavae-single h1,
.sociavae-single h2,
.sociavae-single h3,
.sociavae-single h4,
.sociavae-single h5,
.sociavae-single h6{
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  color: var(--sociavae-child-dark);
  font-weight: 700;
}

/* Individual heading scale */
.sociavae-single h1{
  font-size: 45px;
  line-height: 1.12;
  font-weight: 800;
}

.sociavae-single h2{
  font-size: 32px;
  line-height: 1.25;
}

.sociavae-single h3{
  font-size: 26px;
  line-height: 1.3;
}

.sociavae-single h4{
  font-size: 22px;
  line-height: 1.35;
}

.sociavae-single h5{
  font-size: 18px;
  line-height: 1.4;
}

.sociavae-single h6{
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 767.98px){
  .sociavae-single h1{ font-size: 30px; }
  .sociavae-single h2{ font-size: 24px; }
  .sociavae-single h3{ font-size: 20px; }
}

/* Prevent logged-in horizontal issues */
html, body { max-width: 100%; }
body.logged-in { overflow-x: hidden; }

/* Page wrapper */
.sociavae-single{
  background: var(--sociavae-child-light);
  padding: 44px 0;
  overflow-x: hidden;
  margin-top: 50px; /* Added to avoid menubar overflow */
}

/* Container */
.sociavae-shell{
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

@media (max-width: 767.98px){
  .sociavae-single{ padding: 28px 0; }
  .sociavae-shell{ width: min(1160px, calc(100% - 20px)); }
}

/* Card */
.sociavae-card{
  background: var(--sociavae-child-white);
  border-radius: var(--sociavae-radius);
  box-shadow: var(--sociavae-child-shadow);
  padding: 32px;
  overflow: hidden;
}

/* Header */
.sociavae-head{
  margin-bottom: 18px;
}

/* Title: required 45px */
.sociavae-title{
  margin: 0 0 10px;
  font-size: 45px !important;
  line-height: 1.12;
  font-weight: 800;
  color: var(--sociavae-child-dark);
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px){
  .sociavae-title{
    font-size: 30px !important;
    line-height: 1.2;
  }
}

/* Breadcrumb under title + icon */
.sociavae-breadcrumb{
  margin-top: 10px;
  font-size: 14px;
  color: var(--sociavae-child-gray);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.sociavae-breadcrumb a{
  color: var(--sociavae-child-secondary);
  text-decoration: none;
}

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

.sociavae-bc-sep{
  color: #94a3b8;
}

.sociavae-bc-current{
  color: var(--sociavae-child-dark);
  font-weight: 600;
}

/* Featured Image */
.sociavae-thumb{
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0 18px;
}

.sociavae-thumb-img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Meta */
.sociavae-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--sociavae-child-gray);
  margin-bottom: 18px;
}

.sociavae-meta-item i{
  margin-right: 6px;
  color: var(--sociavae-child-secondary);
}

/* Content safety */
.sociavae-content{
  font-size: 16px;
  line-height: 1.9;
  color: var(--sociavae-child-gray);
  min-width: 0;
}

.sociavae-content *{
  max-width: 100%;
}

.sociavae-content img,
.sociavae-content iframe,
.sociavae-content video,
.sociavae-content embed,
.sociavae-content table,
.sociavae-content pre,
.sociavae-content code{
  max-width: 100%;
}

.sociavae-content iframe{
  width: 100%;
  border: 0;
}

/* Unordered & Ordered Lists */
.sociavae-content ul,
.sociavae-content ol{
  margin: 0 0 20px;
  padding-left: 26px; /* list indentation */
}

/* List items */
.sociavae-content li{
  margin-bottom: 10px;
  line-height: 1.8;
  color: var(--sociavae-child-gray);
}

/* Nested lists spacing */
.sociavae-content ul ul,
.sociavae-content ol ol,
.sociavae-content ul ol,
.sociavae-content ol ul{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Remove extra margin from last elements */
.sociavae-content p:last-child,
.sociavae-content ul:last-child,
.sociavae-content ol:last-child{
  margin-bottom: 0;
}

/* Optional: nicer bullets */
.sociavae-content ul{
  list-style: disc;
}

.sociavae-content ul li::marker{
  color: var(--sociavae-child-secondary);
}

/* Optional: ordered list numbers */
.sociavae-content ol{
  list-style: decimal;
}

.sociavae-content ol li::marker{
  color: var(--sociavae-child-secondary);
  font-weight: 600;
}

/* In-post pagination */
.sociavae-pages{
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--sociavae-line);
  font-size: 14px;
}

/* Footer */
.sociavae-foot{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--sociavae-line);
}

.sociavae-foot strong{
  color: var(--sociavae-child-dark);
  margin-right: 6px;
  font-weight: 800;
}

.sociavae-cats{
  margin-bottom: 12px;
}

/* Tags */
.sociavae-taglist{
  margin-top: 10px;
}

.sociavae-tag{
  display: inline-block;
  padding: 7px 16px;
  margin: 6px 6px 0 0;
  font-size: 13px;
  background: var(--sociavae-child-light);
  color: var(--sociavae-child-primary);
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.sociavae-tag:hover{
  background: var(--sociavae-child-primary);
  color: var(--sociavae-child-white);
  transform: translateY(-1px);
}

/* Comments wrapper (outer) */
.sociavae-comments{
  margin-top: 40px;
}

/* =====================================
   Custom comments UI (comments.php)
   Enhanced styling with better spacing
===================================== */

.sociavae-cm-wrap{
  background: var(--sociavae-child-white);
  padding: 40px;
  border-radius: var(--sociavae-radius);
  box-shadow: var(--sociavae-child-shadow);
  margin-bottom: 30px;
}

.sociavae-cm-title{
  margin: 0 0 30px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sociavae-child-dark);
  position: relative;
  padding-bottom: 15px;
}

.sociavae-cm-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--sociavae-child-gradient);
  border-radius: 2px;
}

.sociavae-cm-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* WordPress comment markup inside our wrapper */
.sociavae-cm-wrap .comment-body{
  padding: 25px 0;
  border-bottom: 1px solid var(--sociavae-line);
  transition: background-color 0.2s ease;
}

.sociavae-cm-wrap .comment-body:hover {
  background-color: var(--sociavae-child-light);
  margin: 0 -20px;
  padding: 25px 20px;
  border-radius: 12px;
}

.sociavae-cm-wrap .comment-author{
  font-weight: 800;
  color: var(--sociavae-child-dark);
  font-size: 16px;
  margin-bottom: 5px;
}

.sociavae-cm-wrap .comment-author .fn {
  text-decoration: none;
  color: inherit;
}

.sociavae-cm-wrap .comment-author .fn:hover {
  color: var(--sociavae-child-primary);
}

.sociavae-cm-wrap .comment-meta,
.sociavae-cm-wrap .comment-metadata{
  font-size: 13px;
  color: var(--sociavae-child-gray);
  margin-bottom: 10px;
}

.sociavae-cm-wrap .comment-metadata a {
  color: var(--sociavae-child-secondary);
  text-decoration: none;
}

.sociavae-cm-wrap .comment-metadata a:hover {
  text-decoration: underline;
}

.sociavae-cm-wrap .comment-content{
  margin-top: 15px;
  font-size: 15px;
  color: var(--sociavae-child-gray);
  line-height: 1.7;
}

.sociavae-cm-wrap .comment-content p {
  margin-bottom: 15px;
}

.sociavae-cm-wrap .comment-content p:last-child {
  margin-bottom: 0;
}

.sociavae-cm-wrap .reply{
  margin-top: 15px;
}

.sociavae-cm-wrap .reply a{
  font-size: 14px;
  color: var(--sociavae-child-white);
  background: var(--sociavae-child-primary);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.sociavae-cm-wrap .reply a:hover{
  background: var(--sociavae-child-primary-dark);
  transform: translateY(-2px);
}

/* Comment form - Enhanced styling */
.sociavae-cm-form{
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--sociavae-line);
}

.sociavae-cm-form-title{
  margin: 0 0 25px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sociavae-child-dark);
  position: relative;
  padding-bottom: 15px;
}

.sociavae-cm-form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--sociavae-child-gradient);
  border-radius: 2px;
}

.sociavae-cm-form-el {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sociavae-cm-form-el .comment-form-comment,
.sociavae-cm-form-el .comment-form-author,
.sociavae-cm-form-el .comment-form-email,
.sociavae-cm-form-el .comment-form-url {
  margin-bottom: 0;
}

.sociavae-cm-form-el label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--sociavae-child-dark);
  font-size: 14px;
}

.sociavae-cm-form-el input,
.sociavae-cm-form-el textarea,
.sociavae-cm-wrap #respond input,
.sociavae-cm-wrap #respond textarea{
  width: 100%;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid var(--sociavae-line);
  font-size: 15px;
  color: var(--sociavae-child-dark);
  background: var(--sociavae-child-white);
  transition: all 0.2s ease;
  font-family: inherit;
}

.sociavae-cm-form-el input:focus,
.sociavae-cm-form-el textarea:focus,
.sociavae-cm-wrap #respond input:focus,
.sociavae-cm-wrap #respond textarea:focus{
  outline: none;
  border-color: var(--sociavae-child-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.sociavae-cm-form-el textarea,
.sociavae-cm-wrap #respond textarea {
  min-height: 140px;
  resize: vertical;
}

.sociavae-cm-submit,
.sociavae-cm-wrap #respond .submit{
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 0;
  background: var(--sociavae-child-gradient);
  color: var(--sociavae-child-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sociavae-cm-submit:hover,
.sociavae-cm-wrap #respond .submit:hover{
  background: var(--sociavae-child-gradient-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Contact Form 7 submit fix if used in content */
.sociavae-single .wpcf7,
.sociavae-single .wpcf7 form{
  max-width: 100%;
}

.sociavae-single input.wpcf7-submit.btn.solid-btn,
.sociavae-single button.wpcf7-submit.btn.solid-btn{
  width: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 575px){
  .sociavae-single input.wpcf7-submit.btn.solid-btn,
  .sociavae-single button.wpcf7-submit.btn.solid-btn{
    width: 100% !important;
  }
}

/* Inline cookie consent checkbox + text (comment form) */
.sociavae-cm-wrap .comment-form-cookies-consent{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 0;
}

.sociavae-cm-wrap .comment-form-cookies-consent input#wp-comment-cookies-consent{
  width: 20px;
  height: 20px;
  margin: 0;
  flex: 0 0 auto;
  margin-top: 2px;
  cursor: pointer;
}

.sociavae-cm-wrap .comment-form-cookies-consent label{
  margin: 0;
  display: inline;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sociavae-child-gray);
  cursor: pointer;
  font-weight: normal;
}

/* If theme forces block labels, hard override */
.sociavae-cm-wrap .comment-form-cookies-consent label,
.sociavae-cm-wrap .comment-form-cookies-consent *{
  float: none !important;
  clear: none !important;
}

/* =====================================
   Author Box – Modern Styling
   Prefix: sociavae-
===================================== */

.sociavae-authorbox{
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--sociavae-line);
}

.sociavae-authorbox-inner{
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--sociavae-child-light);
  padding: 28px;
  border-radius: 16px;
  transition: transform 0.2s ease;
}

.sociavae-authorbox-inner:hover {
  transform: translateY(-3px);
}

/* Avatar */
.sociavae-authorbox-avatar{
  flex: 0 0 auto;
}

.sociavae-authorbox-img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--sociavae-child-shadow);
  transition: transform 0.3s ease;
}

.sociavae-authorbox-img:hover {
  transform: scale(1.05);
}

/* Content */
.sociavae-authorbox-body{
  flex: 1 1 auto;
}

.sociavae-authorbox-name{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sociavae-authorbox-name a{
  color: var(--sociavae-child-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sociavae-authorbox-name a:hover{
  color: var(--sociavae-child-primary);
}

/* Description */
.sociavae-authorbox-desc{
  font-size: 15px;
  line-height: 1.7;
  color: var(--sociavae-child-gray);
}

/* Responsive */
@media (max-width: 575px){
  .sociavae-authorbox-inner{
    flex-direction: column;
    text-align: center;
  }

  .sociavae-authorbox-avatar{
    margin: 0 auto;
  }

  .sociavae-authorbox-desc{
    margin-top: 10px;
  }
}

/* Additional enhancements */
.sociavae-content a {
  color: var(--sociavae-child-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sociavae-content a:hover {
  color: var(--sociavae-child-primary-dark);
  text-decoration: underline;
}

.sociavae-content blockquote {
  border-left: 4px solid var(--sociavae-child-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--sociavae-child-gray);
  font-style: italic;
}

.sociavae-content code {
  background: var(--sociavae-child-light);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  color: var(--sociavae-child-primary-dark);
}

.sociavae-content pre {
  background: var(--sociavae-child-dark);
  color: var(--sociavae-child-white);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}

.sociavae-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

.sociavae-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.sociavae-content th,
.sociavae-content td {
  padding: 0.75rem;
  border: 1px solid var(--sociavae-line);
  text-align: left;
}

.sociavae-content th {
  background: var(--sociavae-child-light);
  font-weight: 700;
}

.sociavae-content tr:nth-child(even) {
  background: var(--sociavae-child-light);
}

/* Social sharing buttons - Using Boxicons */
.sociavae-share {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--sociavae-line);
  border-bottom: 1px solid var(--sociavae-line);
}

.sociavae-share-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--sociavae-child-dark);
}

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

.sociavae-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sociavae-child-light);
  color: var(--sociavae-child-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.sociavae-share-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--sociavae-child-shadow);
}

.sociavae-share-btn.facebook:hover {
  background: #1877F2;
  color: white;
}

.sociavae-share-btn.twitter:hover {
  background: #000000;
  color: white;
}

.sociavae-share-btn.instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: white;
}

.sociavae-share-btn.linkedin:hover {
  background: #0077B5;
  color: white;
}

/* Related posts */
.sociavae-related {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--sociavae-line);
}

.sociavae-related-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--sociavae-child-dark);
  position: relative;
  padding-bottom: 15px;
}

.sociavae-related-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--sociavae-child-gradient);
  border-radius: 2px;
}

.sociavae-related-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.sociavae-related-post {
  background: var(--sociavae-child-white);
  border-radius: var(--sociavae-radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sociavae-related-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--sociavae-child-shadow);
}

.sociavae-related-post-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sociavae-related-post:hover .sociavae-related-post-img {
  transform: scale(1.05);
}

.sociavae-related-post-content {
  padding: 1.5rem;
}

.sociavae-related-post-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.sociavae-related-post-title a {
  color: var(--sociavae-child-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sociavae-related-post-title a:hover {
  color: var(--sociavae-child-primary);
}

.sociavae-related-post-date {
  font-size: 0.9rem;
  color: var(--sociavae-child-gray);
}

/* Newsletter subscription */
.sociavae-newsletter {
  margin: 40px 0;
  padding: 2.5rem;
  background: var(--sociavae-child-gradient);
  border-radius: var(--sociavae-radius);
  color: var(--sociavae-child-white);
  text-align: center;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

.sociavae-newsletter-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.sociavae-newsletter-desc {
  margin-bottom: 2rem;
  opacity: 0.95;
  font-size: 1.1rem;
}

.sociavae-newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.sociavae-newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sociavae-child-dark);
}

.sociavae-newsletter-input::placeholder {
  color: var(--sociavae-child-gray);
}

.sociavae-newsletter-btn {
  padding: 14px 24px;
  background: var(--sociavae-child-dark);
  color: var(--sociavae-child-white);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.sociavae-newsletter-btn:hover {
  background: var(--sociavae-child-primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .sociavae-newsletter-form {
    flex-direction: column;
  }
  
  .sociavae-newsletter-input,
  .sociavae-newsletter-btn {
    border-radius: 12px;
    width: 100%;
  }
  
  .sociavae-newsletter-btn {
    margin-top: 0;
  }
}

/* Comment navigation */
.sociavae-cm-wrap .nav-previous,
.sociavae-cm-wrap .nav-next {
  margin: 20px 0;
}

.sociavae-cm-wrap .nav-previous a,
.sociavae-cm-wrap .nav-next a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--sociavae-child-light);
  color: var(--sociavae-child-dark);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sociavae-cm-wrap .nav-previous a:hover,
.sociavae-cm-wrap .nav-next a:hover {
  background: var(--sociavae-child-primary);
  color: var(--sociavae-child-white);
}
/* =====================================
   WooCommerce Single Product Page Styling
===================================== */

.woocommerce-page {
  background: var(--sociavae-child-light);
}

.woocommerce-page .sociavae-single {
  background: var(--sociavae-child-light);
  padding: 44px 0;
  overflow-x: hidden;
  margin-top: 50px;
}

.woocommerce-page .sociavae-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* Cart Notification */
.sociavae-cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--sociavae-child-white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.sociavae-cart-notification-content {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
}

.sociavae-cart-notification i.bx-check-circle {
  color: #28a745;
  font-size: 24px;
  flex-shrink: 0;
}

.sociavae-cart-notification span {
  flex: 1;
  font-weight: 600;
  color: var(--sociavae-child-dark);
}

.sociavae-view-cart-btn {
  background: var(--sociavae-child-primary);
  color: var(--sociavae-child-white);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sociavae-view-cart-btn:hover {
  background: var(--sociavae-child-primary-dark);
  transform: translateY(-2px);
  color: var(--sociavae-child-white);
}

.sociavae-close-notification {
  background: none;
  border: none;
  color: var(--sociavae-child-gray);
  cursor: pointer;
  padding: 5px;
  font-size: 20px;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.sociavae-close-notification:hover {
  color: var(--sociavae-child-dark);
}

/* Product Container */
.sociavae-product-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .sociavae-product-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* Product Gallery */
.sociavae-product-gallery {
  flex: 0 0 50%;
}

@media (max-width: 991px) {
  .sociavae-product-gallery {
    flex: 1 1 100%;
  }
}

.woocommerce-page .woocommerce-product-gallery {
  margin: 0;
  position: relative;
}

.woocommerce-page .woocommerce-product-gallery__wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.woocommerce-page .woocommerce-product-gallery__image {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.woocommerce-page .woocommerce-product-gallery__image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.woocommerce-page .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-page .flex-control-thumbs li {
  margin: 0;
  width: calc(25% - 8px);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 767px) {
  .woocommerce-page .flex-control-thumbs li {
    width: calc(33.333% - 7px);
  }
}

.woocommerce-page .flex-control-thumbs li img {
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 100%;
  height: auto;
}

.woocommerce-page .flex-control-thumbs li:hover img,
.woocommerce-page .flex-control-thumbs li.flex-active-slide img {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Product Summary */
.sociavae-product-summary {
  flex: 0 0 50%;
}

@media (max-width: 991px) {
  .sociavae-product-summary {
    flex: 1 1 100%;
  }
}

.sociavae-product-summary-inner {
  padding: 0;
}

/* Product Title */
.woocommerce-page .sociavae-product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--sociavae-child-dark);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .woocommerce-page .sociavae-product-title {
    font-size: 24px;
  }
}

/* Product Rating */
.woocommerce-page .star-rating {
  margin: 0 0 20px 0;
  color: var(--sociavae-child-secondary);
}

.woocommerce-page .woocommerce-product-rating {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-page .woocommerce-product-rating .star-rating {
  display: inline-block;
  margin: 0;
}

.woocommerce-page .woocommerce-review-link {
  color: var(--sociavae-child-gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-page .woocommerce-review-link:hover {
  color: var(--sociavae-child-primary);
  text-decoration: underline;
}

/* Product Price */
.woocommerce-page .sociavae-price-wrapper {
  margin-bottom: 25px;
}

.woocommerce-page .sociavae-price {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sociavae-child-primary);
  margin: 0;
}

.woocommerce-page .price {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sociavae-child-primary);
  margin-bottom: 25px;
}

.woocommerce-page .price ins {
  text-decoration: none;
  color: var(--sociavae-child-primary);
}

.woocommerce-page .price del {
  color: var(--sociavae-child-gray);
  font-size: 20px;
  margin-right: 10px;
  opacity: 0.7;
}

/* Product Short Description */
.woocommerce-page .woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sociavae-child-gray);
  margin-bottom: 30px;
}

.woocommerce-page .woocommerce-product-details__short-description p {
  margin-bottom: 15px;
}

.woocommerce-page .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

/* Product Add to Cart Form */
.woocommerce-page .sociavae-add-to-cart-form {
  margin-bottom: 30px;
}

/* Quantity Input */
.woocommerce-page .quantity {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  vertical-align: middle;
}

.woocommerce-page .quantity input[type="number"] {
  width: 80px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid var(--sociavae-line);
  padding: 0 14px;
  font-size: 16px;
  color: var(--sociavae-child-dark);
  background: var(--sociavae-child-white);
  transition: all 0.2s ease;
  text-align: center;
  -moz-appearance: textfield;
}

.woocommerce-page .quantity input[type="number"]::-webkit-outer-spin-button,
.woocommerce-page .quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-page .quantity input[type="number"]:focus {
  outline: none;
  border-color: var(--sociavae-child-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.woocommerce-page .quantity .qty {
  width: 80px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid var(--sociavae-line);
  padding: 0 14px;
  font-size: 16px;
  color: var(--sociavae-child-dark);
  background: var(--sociavae-child-white);
  transition: all 0.2s ease;
  text-align: center;
}

/* Add to Cart Button */
.woocommerce-page .sociavae-add-to-cart-btn {
  background: var(--sociavae-child-gradient);
  color: var(--sociavae-child-white);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.woocommerce-page .sociavae-add-to-cart-btn:hover {
  background: var(--sociavae-child-gradient-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  color: var(--sociavae-child-white);
}

.woocommerce-page .sociavae-add-to-cart-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.woocommerce-page .sociavae-add-to-cart-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

.woocommerce-page .single_add_to_cart_button {
  background: var(--sociavae-child-gradient);
  color: var(--sociavae-child-white);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.woocommerce-page .single_add_to_cart_button:hover {
  background: var(--sociavae-child-gradient-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  color: var(--sociavae-child-white);
}

.woocommerce-page .single_add_to_cart_button.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.woocommerce-page .single_add_to_cart_button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Product Meta */
.woocommerce-page .sociavae-product-meta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--sociavae-line);
  font-size: 14px;
  color: var(--sociavae-child-gray);
}

.woocommerce-page .sociavae-product-meta > span {
  display: block;
  margin-bottom: 10px;
}

.woocommerce-page .sociavae-product-meta > span:last-child {
  margin-bottom: 0;
}

.woocommerce-page .sociavae-product-meta a {
  color: var(--sociavae-child-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-page .sociavae-product-meta a:hover {
  color: var(--sociavae-child-primary-dark);
  text-decoration: underline;
}

/* Product Tabs */
.sociavae-tabs-container {
  margin-top: 40px;
}

.woocommerce-page .woocommerce-tabs {
  margin: 0;
}

.woocommerce-page .woocommerce-tabs .wc-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--sociavae-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.woocommerce-page .woocommerce-tabs .wc-tabs li {
  margin: 0;
  border: none;
  background: transparent;
}

.woocommerce-page .woocommerce-tabs .wc-tabs li a {
  display: block;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--sociavae-child-gray);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  border-radius: 0;
}

.woocommerce-page .woocommerce-tabs .wc-tabs li.active a {
  color: var(--sociavae-child-primary);
  border-bottom-color: var(--sociavae-child-primary);
  background: transparent;
}

.woocommerce-page .woocommerce-tabs .wc-tabs li a:hover {
  color: var(--sociavae-child-primary);
  background: transparent;
}

.woocommerce-page .woocommerce-tabs .panel {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}

.woocommerce-page .woocommerce-tabs .panel h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--sociavae-child-dark);
  margin-bottom: 15px;
}

.woocommerce-page .woocommerce-tabs .panel p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sociavae-child-gray);
  margin-bottom: 15px;
}

/* Related Products */
.woocommerce-page .related.products {
  margin-top: 40px;
}

.woocommerce-page .related.products > h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--sociavae-child-dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.woocommerce-page .related.products > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--sociavae-child-gradient);
  border-radius: 2px;
}

.woocommerce-page .related.products ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-page .related.products ul.products li.product {
  background: var(--sociavae-child-light);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.woocommerce-page .related.products ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce-page .related.products ul.products li.product img {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}

.woocommerce-page .related.products ul.products li.product h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--sociavae-child-dark);
  margin-bottom: 10px;
}

.woocommerce-page .related.products ul.products li.product .price {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.woocommerce-page .related.products ul.products li.product a.button {
  background: var(--sociavae-child-primary);
  color: var(--sociavae-child-white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  width: auto;
}

.woocommerce-page .related.products ul.products li.product a.button:hover {
  background: var(--sociavae-child-primary-dark);
  transform: translateY(-2px);
  color: var(--sociavae-child-white);
}

/* Product Sale Badge */
.woocommerce-page .onsale {
  background: var(--sociavae-child-accent);
  color: var(--sociavae-child-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  margin: 0;
}

/* Product Stock Status */
.woocommerce-page .stock {
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.woocommerce-page .stock.in-stock {
  color: #28a745;
}

.woocommerce-page .stock.out-of-stock {
  color: #dc3545;
}

/* Product Variation Selection */
.woocommerce-page .variations {
  margin-bottom: 25px;
}

.woocommerce-page .variations select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid var(--sociavae-line);
  font-size: 16px;
  color: var(--sociavae-child-dark);
  background: var(--sociavae-child-white);
  transition: all 0.2s ease;
  margin-top: 5px;
  cursor: pointer;
}

.woocommerce-page .variations select:focus {
  outline: none;
  border-color: var(--sociavae-child-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.woocommerce-page .variations label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--sociavae-child-dark);
  margin-bottom: 10px;
  display: block;
}

.woocommerce-page .variations tr {
  display: block;
  margin-bottom: 20px;
}

.woocommerce-page .variations td {
  display: block;
  padding: 0;
}

.woocommerce-page .variations th {
  display: none;
}

/* Reset Variation Button */
.woocommerce-page .reset_variations {
  font-size: 14px;
  color: var(--sociavae-child-gray);
  margin-top: 10px;
  display: inline-block;
  transition: color 0.2s ease;
}

.woocommerce-page .reset_variations:hover {
  color: var(--sociavae-child-primary);
  text-decoration: none;
}

/* Variable Products */
.woocommerce-page .variable-item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.woocommerce-page .variable-item .color-variable {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--sociavae-line);
  cursor: pointer;
  transition: all 0.2s ease;
}

.woocommerce-page .variable-item .color-variable:hover {
  border-color: var(--sociavae-child-primary);
  transform: scale(1.1);
}

.woocommerce-page .variable-item .color-variable.selected {
  border-color: var(--sociavae-child-primary);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Product Reviews - Enhanced */
.woocommerce-page #reviews {
  margin-top: 40px;
}

.woocommerce-page #reviews #comments {
  margin-bottom: 30px;
}

.woocommerce-page #reviews #comments ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-page #reviews #comments ol.commentlist li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sociavae-line);
  background: var(--sociavae-child-light);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}

.woocommerce-page #reviews #comments ol.commentlist li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.woocommerce-page #reviews #comments ol.commentlist li:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: none;
}

.woocommerce-page #reviews #comments .comment-container {
  display: flex;
  gap: 20px;
}

.woocommerce-page #reviews #comments .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.woocommerce-page #reviews #comments .comment-text {
  flex: 1;
  margin: 0;
}

.woocommerce-page #reviews #comments .comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.woocommerce-page #reviews #comments .comment-author {
  font-weight: 700;
  font-size: 16px;
  color: var(--sociavae-child-dark);
}

.woocommerce-page #reviews #comments .comment-metadata {
  font-size: 14px;
  color: var(--sociavae-child-gray);
}

.woocommerce-page #reviews #comments .star-rating {
  margin: 10px 0;
}

.woocommerce-page #reviews #comments .description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sociavae-child-gray);
}

/* Enhanced Review Form */
.woocommerce-page #review_form {
  padding-top: 30px;
  border-top: 1px solid var(--sociavae-line);
  background: var(--sociavae-child-light);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}

.woocommerce-page #review_form #respond .comment-reply-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--sociavae-child-dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.woocommerce-page #review_form #respond .comment-reply-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--sociavae-child-gradient);
  border-radius: 2px;
}

.woocommerce-page #review_form #respond .comment-form-rating {
  margin-bottom: 20px;
}

.woocommerce-page #review_form #respond .comment-form-rating label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--sociavae-child-dark);
  display: block;
  margin-bottom: 10px;
}

.woocommerce-page #review_form #respond .comment-form-rating p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-page #review_form #respond .comment-form-rating p .stars {
  display: flex;
  gap: 5px;
}

.woocommerce-page #review_form #respond .comment-form-rating p .stars a {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-decoration: none;
  color: var(--sociavae-child-gray);
  font-size: 20px;
  transition: color 0.2s ease;
}

.woocommerce-page #review_form #respond .comment-form-rating p .stars a:hover,
.woocommerce-page #review_form #respond .comment-form-rating p .stars a.active {
  color: var(--sociavae-child-secondary);
}

.woocommerce-page #review_form #respond .comment-form-comment,
.woocommerce-page #review_form #respond .comment-form-author,
.woocommerce-page #review_form #respond .comment-form-email {
  margin-bottom: 20px;
}

.woocommerce-page #review_form #respond .comment-form-comment label,
.woocommerce-page #review_form #respond .comment-form-author label,
.woocommerce-page #review_form #respond .comment-form-email label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--sociavae-child-dark);
  display: block;
  margin-bottom: 10px;
}

.woocommerce-page #review_form #respond .comment-form-comment textarea,
.woocommerce-page #review_form #respond .comment-form-author input,
.woocommerce-page #review_form #respond .comment-form-email input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid var(--sociavae-line);
  font-size: 16px;
  color: var(--sociavae-child-dark);
  background: var(--sociavae-child-white);
  transition: all 0.2s ease;
  font-family: inherit;
}

.woocommerce-page #review_form #respond .comment-form-comment textarea:focus,
.woocommerce-page #review_form #respond .comment-form-author input:focus,
.woocommerce-page #review_form #respond .comment-form-email input:focus {
  outline: none;
  border-color: var(--sociavae-child-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.woocommerce-page #review_form #respond .comment-form-comment textarea {
  min-height: 120px;
  resize: vertical;
}

.woocommerce-page #review_form #respond .form-submit {
  margin-top: 20px;
}

.woocommerce-page #review_form #respond .form-submit input {
  background: var(--sociavae-child-gradient);
  color: var(--sociavae-child-white);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.woocommerce-page #review_form #respond .form-submit input:hover {
  background: var(--sociavae-child-gradient-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.woocommerce-page #review_form #respond .form-submit input.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .woocommerce-page .woocommerce-tabs .wc-tabs {
    flex-direction: column;
  }
  
  .woocommerce-page .woocommerce-tabs .wc-tabs li {
    margin-right: 0;
  }
  
  .woocommerce-page .related.products ul.products {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .woocommerce-page .sociavae-product-container {
    gap: 20px;
  }
  
  .sociavae-cart-notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .sociavae-cart-notification-content {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .sociavae-view-cart-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .woocommerce-page .related.products ul.products {
    grid-template-columns: 1fr;
  }
  
  .woocommerce-page .flex-control-thumbs li {
    width: calc(33.333% - 7px);
  }
  
  .woocommerce-page .flex-control-thumbs li:nth-child(3n) {
    margin-right: 0;
  }
  
  .woocommerce-page .quantity {
    display: block;
    margin-bottom: 15px;
  }
  
  .woocommerce-page .single_add_to_cart-button {
    width: 100%;
  }
  
  .woocommerce-page #reviews #comments .comment-container {
    flex-direction: column;
    text-align: center;
  }
  
  .woocommerce-page #reviews #comments .avatar {
    margin: 0 auto;
  }
}

/* Remove WooCommerce default styles that might conflict */
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-error {
  background: var(--sociavae-child-light);
  border-left: 4px solid var(--sociavae-child-primary);
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.woocommerce-page .woocommerce-message::before,
.woocommerce-page .woocommerce-info::before,
.woocommerce-page .woocommerce-error::before {
  color: var(--sociavae-child-primary);
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-error {
  animation: slideInDown 0.3s ease;
}

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

/* Variation Swatches */
.woocommerce-page .variations_form .variations .value {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce-page .variations_form .variations .value .swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--sociavae-line);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sociavae-child-dark);
}

.woocommerce-page .variations_form .variations .value .swatch:hover {
  border-color: var(--sociavae-child-primary);
  transform: scale(1.05);
}

.woocommerce-page .variations_form .variations .value .swatch.selected {
  border-color: var(--sociavae-child-primary);
  background: var(--sociavae-child-primary);
  color: var(--sociavae-child-white);
}

/* Single Variation Price */
.woocommerce-page .single_variation .price {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sociavae-child-primary);
  margin-bottom: 20px;
}

/* Availability */
.woocommerce-page .stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.woocommerce-page .stock::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}