@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;700;800&family=Roboto+Slab:wght@300;400;500;600;700;800&family=Roboto:wght@400;700;900&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700;8..60,800&family=Wendy+One&display=swap');

.sidebar{
    max-width: 320px;
}

.theme-module{  
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
  border-radius: .25rem
}

.widgets-module{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
}

.widgets-footer-module{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}


.text-ellipsis{
    height: 3em;
    white-space: wrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    
}

.content-area>h1,.content-area>h2,.content-area>h3,.content-area>h4,.content-area>h5,.content-area>h6{
  font-weight: 700;
  margin: 10px 0px;
}


.content-area>h1{
  font-size:  1.5rem;
}

.content-area>h2{
  font-size:  1.25rem;
}

.content-area>h3{
  font-size:  1.125rem
}

.content-area>h4{
  font-size:  1.125rem
}

.content-area  a{
color: var(--primary-color);
}

.content-area>ol>li,.content-area>ul>li {
padding: 0.3rem  0;
font-size:initial;
}

.content-area ul, .content-area ol{
list-style: disc;
padding: revert;
}

.content-area>p{
  margin: 0.5rem 0rem;
}

.font-exo{
    font-family: 'Exo', sans-serif;
}

.font-inter{
    font-family: 'Inter', sans-serif;
}

.font-montserrat{
    font-family: 'Montserrat', sans-serif;
}

.font-roboto{
    font-family: 'Roboto', sans-serif;
}

.font-robotoslab{
    font-family: 'Roboto Slab', serif;
}

.font-source{
    font-family: 'Source Serif 4', serif;
}

.font-wendy{
    font-family: 'Wendy One', sans-serif;
}

/**Transitions**/

/* Grow */
.hvr-grow {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  
  /* Shrink */
  .hvr-shrink {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.99);
    transform: scale(0.99);
  }

/* Float */
  .hvr-float {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-float:hover, .hvr-float:focus, .hvr-float:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  
  /* Sink */
  .hvr-sink {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  

  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção de 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }  }

@media (max-width: 450px) {
  .sidebar{
    min-width: auto;
    max-width: 100%;
  }
}

/* ============================================
   AFFILIATE CTA & REVIEW CONTENT STYLING
   ============================================ */

/* Affiliate CTA Buttons - Amazon & Flipkart */
.affiliate-cta-box {
    animation: fadeInUp 0.6s ease-out;
}

.affiliate-cta-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Specifications Styling */
.product-specs {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 24px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #667eea;
}

.product-specs h3 {
    color: #2d3748;
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-specs ul li:last-child {
    border-bottom: none;
}

.product-specs ul li strong {
    color: #2d3748;
    display: inline-block;
    min-width: 140px;
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    margin: 40px 0;
    -webkit-overflow-scrolling: touch;
}

/* Comparison Table Styling */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    padding: 18px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.comparison-table th:first-child {
    border-top-left-radius: 16px;
}

.comparison-table th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: middle;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #667eea;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.comparison-table tbody tr {
    transition: all 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* Dark Mode Support */
.dark .product-specs {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-left-color: #667eea;
}

.dark .product-specs h3,
.dark .product-specs ul li strong {
    color: #e2e8f0;
}

.dark .product-specs ul li {
    color: #cbd5e0;
    border-bottom-color: rgba(255,255,255,0.05);
}

.dark .comparison-table {
    background: #1a202c;
    border-color: rgba(255,255,255,0.1);
}

.dark .comparison-table td {
    color: #e2e8f0;
    border-bottom-color: rgba(255,255,255,0.08);
}

.dark .comparison-table td:first-child {
    color: #a78bfa;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.1) 0%, transparent 100%);
}

.dark .comparison-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}

/* Responsive Design for Affiliate CTAs */
@media (max-width: 640px) {
    .affiliate-cta-box > div {
        flex-direction: column !important;
    }
    
    .affiliate-cta-box a {
        width: 100%;
        justify-content: center;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .comparison-table th {
        font-size: 12px;
    }
}
