 /* =================== QUIZ SECTION - ENHANCED =================== */
 .quiz-section {
     background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
     /* border-top: 1px solid var(--line); */
     border-bottom: 1px solid var(--line);
     padding: 2rem 0;
     /* margin-top: -40px; */
     /* margin: 40px 0; */
     /* margin-top: 40px; */
     z-index: 1;
     /* Lower z-index to keep quiz section behind */
     position: relative;
 }

 .quiz-section-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .quiz-section-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 16px;
     background: var(--teal-light);
     border: 1px solid rgba(49, 173, 173, .2);
     border-radius: 999px;
     color: var(--teal-2);
     font-weight: 700;
     font-size: 13px;
     margin-bottom: 16px;
 }

 .quiz-section-title {
     font-size: clamp(28px, 4vw, 42px);
     font-weight: 900;
     color: var(--dark);
     margin: 0 0 12px;
     letter-spacing: -0.5px;
 }

 .quiz-section-title .highlight {
     color: var(--pink);
 }

 .quiz-section-sub {
     color: var(--muted);
     font-size: 16px;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* Quiz Category Tabs */
 .quiz-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin-bottom: 30px;
 }

 .quiz-tab {
     padding: 10px 20px;
     border-radius: 999px;
     font-weight: 700;
     font-size: 14px;
     border: 2px solid var(--border);
     background: #fff;
     color: var(--muted);
     cursor: pointer;
     transition: var(--transition);
 }

 .quiz-tab:hover {
     border-color: var(--teal);
     color: var(--teal);
 }

 .quiz-tab.active {
     background: linear-gradient(135deg, var(--teal), var(--pink));
     border-color: transparent;
     color: #fff;
     box-shadow: 0 8px 20px rgba(49, 173, 173, .25);
 }

 /* Quiz Cards Grid */
 .quiz-cards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
 }

 .quiz-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     transition: var(--transition);
     cursor: pointer;
     position: relative;
 }

 .quiz-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-hover);
     border-color: rgba(49, 173, 173, .3);
 }

 .quiz-card-badge {
     position: absolute;
     top: 12px;
     left: 12px;
     padding: 6px 12px;
     border-radius: 6px;
     font-weight: 800;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     z-index: 2;
 }

 .quiz-card-badge.gaming {
     background: linear-gradient(135deg, #8b5cf6, #a78bfa);
     color: #fff;
 }

 .quiz-card-badge.office {
     background: linear-gradient(135deg, var(--teal), #0fc1b8);
     color: #fff;
 }

 .quiz-card-badge.ergonomic {
     background: linear-gradient(135deg, var(--pink), var(--pink-2));
     color: #fff;
 }

 .quiz-card-badge.home {
     background: linear-gradient(135deg, #f59e0b, #fbbf24);
     color: #fff;
 }

 .quiz-card-badge.budget {
     background: linear-gradient(135deg, #10b981, #34d399);
     color: #fff;
 }

 .quiz-card-badge.desk {
     background: linear-gradient(135deg, #3b82f6, #60a5fa);
     color: #fff;
 }

 .quiz-card-img {
     height: 160px;
     background: linear-gradient(135deg, #f8fafc, #f1f5f9);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     position: relative;
 }

 .quiz-card-img img {
     max-height: 140px;
     max-width: 90%;
     object-fit: contain;
     transition: var(--transition);
 }

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

 .quiz-card-body {
     padding: 20px;
 }

 .quiz-card-title {
     font-weight: 800;
     font-size: 1.05rem;
     color: var(--dark);
     margin: 0 0 8px;
 }

 .quiz-card-desc {
     color: var(--muted);
     font-size: 14px;
     line-height: 1.5;
     margin: 0 0 16px;
 }

 .quiz-card-btn {
     width: 100%;
     padding: 12px 20px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 14px;
     border: none;
     background: linear-gradient(135deg, var(--teal), #0fc1b8);
     color: #fff;
     text-decoration: none !important;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: var(--transition);
     box-shadow: 0 4px 14px rgba(49, 173, 173, .2);
 }

 .quiz-card-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(49, 173, 173, .3);
     color: #fff;
 }

 /* Quiz CTA Banner */
 .quiz-cta-banner {
     margin-top: 40px;
     background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
     border-radius: var(--radius);
     padding: 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .quiz-cta-banner::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(49, 173, 173, .15), transparent 70%);
     pointer-events: none;
 }

 .quiz-cta-banner::after {
     content: '';
     position: absolute;
     bottom: -50%;
     left: -10%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255, 45, 141, .1), transparent 70%);
     pointer-events: none;
 }

 .quiz-cta-content {
     position: relative;
     z-index: 1;
 }

 .quiz-cta-title {
     font-weight: 900;
     font-size: clamp(22px, 3vw, 28px);
     color: #fff;
     margin: 0 0 8px;
 }

 .quiz-cta-sub {
     color: rgba(255, 255, 255, .7);
     font-size: 15px;
     margin: 0;
 }

 .quiz-cta-btn {
     position: relative;
     z-index: 1;
     padding: 16px 32px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     border: none;
     background: linear-gradient(135deg, var(--pink), var(--pink-2));
     color: #fff;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 14px 28px rgba(255, 45, 141, .3);
     transition: var(--transition);
     text-decoration: none !important;
 }

 .quiz-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 18px 36px rgba(255, 45, 141, .4);
     color: #fff;
 }

 @media (max-width: 768px) {
     .quiz-cta-banner {
         padding: 30px 24px;
         text-align: center;
         justify-content: center;
     }

     .quiz-cta-content {
         text-align: center;
     }
 }



 /* Utility */
 .muted {
     color: var(--muted);
 }

 .divider {
     height: 1px;
     background: var(--border);
 }

 .scroll-mt {
     scroll-margin-top: 100px;
 }


 /* =================== COMPARISON SECTION =================== */
 .comparison-section {
     background: linear-gradient(180deg, #ffffff 0%, rgba(49, 173, 173, .03) 50%, #ffffff 100%);
     position: relative;
     overflow: hidden;
     padding: 2rem 0;
 }

 .comparison-section::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(255, 45, 141, .08), transparent 70%);
     pointer-events: none;
 }

 .comparison-section::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(49, 173, 173, .08), transparent 70%);
     pointer-events: none;
 }

 .section-header {
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
 }

 .comparison-section-header {
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
 }

 .section-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: linear-gradient(135deg, rgba(49, 173, 173, .12), rgba(255, 45, 141, .12));
     color: var(--teal);
     padding: 8px 20px;
     border-radius: 999px;
     font-weight: 700;
     font-size: 13px;
     margin-bottom: 16px;
     border: 1px solid rgba(49, 173, 173, .20);
 }

 .section-title {
     font-weight: 900;
     font-size: clamp(36px, 4vw, 56px);
     line-height: 1.1;
     margin: 0 0 20px;
 }

 .section-title .pink {
     background: linear-gradient(135deg, var(--pink), #ff6b9d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .section-subtitle {
     font-size: clamp(16px, 1.3vw, 20px);
     color: var(--muted);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .comparison-section-title {
     font-weight: 900;
     font-size: clamp(36px, 4vw, 56px);
     line-height: 1.1;
     margin: 0 0 20px;
 }

 .comparison-section-title .pink {
     background: linear-gradient(135deg, var(--pink), #ff6b9d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .comparison-section-subtitle {
     font-size: clamp(16px, 1.3vw, 20px);
     color: var(--muted);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .comparison-wrapper {
     position: relative;
     z-index: 1;
 }

 .comparison-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
     margin-bottom: 50px;
 }

 .comparison-card {
     background: #fff;
     border: 2px solid transparent;
     border-radius: 24px;
     padding: 40px 28px;
     text-align: center;
     transition: .3s ease;
     box-shadow: 0 8px 30px rgba(15, 23, 42, .08);
     position: relative;
     overflow: hidden;
 }

 .comparison-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--teal), var(--pink));
     opacity: 0;
     transition: .3s ease;
 }

 .comparison-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(15, 23, 42, .15);
     border-color: rgba(49, 173, 173, .20);
 }

 .comparison-card:hover::before {
     opacity: 1;
 }

 .comparison-icon {
     width: 90px;
     height: 90px;
     margin: 0 auto 24px;
     background: linear-gradient(135deg, rgba(49, 173, 173, .10), rgba(255, 45, 141, .10));
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--pink);
     position: relative;
     transition: .3s ease;
 }

 .comparison-card:hover .comparison-icon {
     background: linear-gradient(135deg, var(--teal), var(--pink));
     color: #fff;
     transform: scale(1.05) rotate(5deg);
 }

 .comparison-card h3 {
     font-weight: 900;
     font-size: 24px;
     margin-bottom: 14px;
     color: var(--dark);
 }

 .comparison-card p {
     color: var(--muted);
     font-size: 15px;
     line-height: 1.7;
     margin-bottom: 24px;
     min-height: 50px;
 }

 .comparison-stats {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 24px;
     padding: 16px;
     background: rgba(49, 173, 173, .04);
     border-radius: 12px;
 }

 .comparison-stat {
     text-align: center;
 }

 .comparison-stat-number {
     font-size: 24px;
     font-weight: 900;
     color: var(--teal);
     display: block;
 }

 .comparison-stat-label {
     font-size: 11px;
     color: var(--muted);
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: .5px;
 }

 .comparison-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #fff;
     background: linear-gradient(135deg, var(--teal), var(--pink));
     padding: 12px 24px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 15px;
     text-decoration: none;
     transition: .2s ease;
     box-shadow: 0 8px 16px rgba(49, 173, 173, .20);
 }

 .comparison-link:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 24px rgba(49, 173, 173, .30);
     color: #fff;
 }

 .comparison-cta {
     text-align: center;
     background: linear-gradient(135deg, rgba(49, 173, 173, .08), rgba(255, 45, 141, .08));
     border-radius: 20px;
     padding: 40px 40px;
     margin-top: 50px;
 }

 .comparison-cta h3 {
     font-size: 28px;
     font-weight: 900;
     margin-bottom: 12px;
 }

 .comparison-cta p {
     color: var(--muted);
     font-size: 16px;
     margin-bottom: 28px;
 }

 .comparison-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 16px 40px;
     background: linear-gradient(135deg, var(--teal), var(--pink));
     color: #fff;
     border-radius: 12px;
     font-weight: 800;
     font-size: 18px;
     text-decoration: none;
     box-shadow: 0 12px 28px rgba(49, 173, 173, .25);
     transition: .2s ease;
 }

 .comparison-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 16px 36px rgba(49, 173, 173, .35);
     color: #fff;
 }

 /* =================== DEALS SECTION =================== */
 .deals-section {
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.05), rgba(255, 45, 141, 0.05));
     padding: 2rem 0;
 }

 .deals-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .deals-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }

 .deals-title {
     font-size: 3rem;
     font-weight: 900;
     margin-bottom: 1rem;
 }

 .deals-title .highlight {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .deals-subtitle {
     color: var(--text-gray);
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 2rem;
     line-height: 1.6;
 }

 .deals-content {
     display: grid;
     grid-template-columns: 1fr 400px;
     gap: 3rem;
     align-items: start;
 }

 .deals-left {
     background: white;
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 }

 .deals-list {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .deal-item {
     display: flex;
     gap: 1.5rem;
     align-items: start;
 }

 .deal-icon {
     width: 60px;
     height: 60px;
     border-radius: 15px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     flex-shrink: 0;
 }

 .deal-content h3 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .deal-content p {
     color: var(--text-gray);
     line-height: 1.6;
     margin: 0;
 }

 .deals-cta-box {
     position: sticky;
     top: 100px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 20px;
     padding: 2.5rem;
     color: white;
     text-align: center;
     box-shadow: 0 15px 45px rgba(255, 45, 141, 0.3);
 }

 .deals-cta-icon {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto 1.5rem;
 }

 .deals-cta-box h3 {
     font-size: 1.8rem;
     font-weight: 800;
     margin-bottom: 1rem;
 }

 .deals-cta-box p {
     opacity: 0.95;
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .deals-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: white;
     color: var(--primary-teal);
     padding: 1rem 2rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s;
 }

 .deals-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     color: var(--primary-teal);
 }

 .deals-note {
     margin-top: 1.5rem;
     font-size: 0.85rem;
     opacity: 0.9;
 }

 /* =================== REVIEWS SECTION =================== */
 .reviews-testimonials-section {
     background: white;
     padding: 5rem 0;
 }

 .reviews-testimonials-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .reviews-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }

 .reviews-title {
     font-size: 3rem;
     font-weight: 900;
     margin-bottom: 1rem;
 }

 .reviews-title .highlight {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .reviews-subtitle {
     color: var(--text-gray);
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .review-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s;
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
 }

 .review-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .review-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
 }

 .review-user-info h4 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.2rem;
 }

 .review-stars {
     color: #ffc107;
     font-size: 1rem;
 }

 .review-text {
     color: var(--text-gray);
     line-height: 1.8;
     margin-bottom: 1.5rem;
     font-style: italic;
 }

 .review-product {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--primary-teal);
     font-size: 0.9rem;
     font-weight: 600;
 }

 .review-verified {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     background: rgba(49, 173, 173, 0.1);
     color: var(--primary-teal);
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-top: 1rem;
 }

 .reviews-cta {
     text-align: center;
     margin-top: 3rem;
 }

 .reviews-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s;
 }

 .reviews-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 45, 141, 0.4);
     color: white;
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .deals-content {
         grid-template-columns: 1fr;
     }

     .deals-cta-box {
         position: relative;
         top: 0;
     }

     .reviews-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {

     .deals-title,
     .reviews-title {
         font-size: 2rem;
     }

     .deals-left {
         padding: 2rem;
     }

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

     .nav-menu {
         flex-wrap: wrap;
     }
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 .section-card {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     box-shadow: var(--shadow-soft);
     overflow: hidden;
 }

 /* FAQ */
 .accordion-button {
     font-weight: 700;
     font-size: .98rem;
     padding: 18px 20px;
 }

 .accordion-button:not(.collapsed) {
     color: var(--teal-2);
     background: var(--teal-light);
     box-shadow: none;
 }

 .accordion-button:focus {
     box-shadow: none;
     border-color: var(--border);
 }

 .accordion-body {
     padding: 16px 20px;
     color: var(--muted);
     line-height: 1.6;
 }

 .section-head {
     padding: 20px 22px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
 }


 /* =================== REVIEWS SECTION =================== */
 .reviews-section {
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.08), rgba(255, 45, 141, 0.08));
     padding: 2rem 0;
 }

 .reviews-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .reviews-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: white;
     color: var(--primary-teal);
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 1rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .reviews-title {
     font-size: 3rem;
     font-weight: 900;
     margin-bottom: 1rem;
 }

 .reviews-title .highlight {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .reviews-subtitle {
     color: var(--text-gray);
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto 2rem;
     line-height: 1.6;
 }

 /* Main Rating Content - 2 Column Layout */
 .rating-main-content {
     display: grid;
     grid-template-columns: 400px 1fr;
     gap: 3rem;
     margin-bottom: 2rem;
     align-items: start;
 }

 /* Left: Rating Categories List */
 .rating-categories-section {
     background: white;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     position: sticky;
     top: 100px;
 }

 .section-subtitle {
     font-size: 1.3rem;
     font-weight: 800;
     margin-bottom: 2rem;
     color: var(--text-dark);
 }

 .rating-categories-list {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .rating-category-item {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     padding: 1.2rem;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.05), rgba(255, 45, 141, 0.05));
     border-radius: 12px;
     border: 1px solid rgba(49, 173, 173, 0.1);
     transition: all 0.3s ease;
 }

 .rating-category-item:hover {
     transform: translateX(5px);
     border-color: var(--primary-teal);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .category-icon-small {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.15), rgba(255, 45, 141, 0.15));
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .category-icon-small i {
     font-size: 1.4rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .category-info h4 {
     font-size: 1.05rem;
     font-weight: 700;
     margin-bottom: 0.3rem;
     color: var(--text-dark);
 }

 .category-info p {
     font-size: 0.85rem;
     color: var(--text-gray);
     margin: 0;
     line-height: 1.4;
 }

 /* Right: Example Rating Card */
 .example-rating-section {
     background: white;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .example-rating-card {
     /* Content wrapper */
 }

 .product-example-header {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     padding-bottom: 2rem;
     margin-bottom: 2rem;
     border-bottom: 2px solid rgba(0, 0, 0, 0.08);
 }

 .product-example-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2rem;
     flex-shrink: 0;
 }

 .product-example-name h4 {
     font-size: 1.6rem;
     font-weight: 800;
     margin-bottom: 0.3rem;
     color: var(--text-dark);
 }

 .product-example-name p {
     font-size: 1rem;
     color: var(--text-gray);
     margin: 0;
 }

 /* Rating Bars */
 .rating-bars {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     margin-bottom: 2rem;
 }

 .rating-bar-item {
     display: flex;
     flex-direction: column;
     gap: 0.6rem;
 }

 .bar-label {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 1rem;
     font-weight: 600;
     color: var(--text-dark);
 }

 .bar-score {
     font-weight: 800;
     font-size: 1.1rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .bar-track {
     height: 14px;
     background: #f0f0f0;
     border-radius: 10px;
     overflow: hidden;
 }

 .bar-fill {
     height: 100%;
     background: linear-gradient(90deg, #31adad, #ff2d8d);
     border-radius: 10px;
     transition: width 1s ease;
 }

 .overall-rating {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.8rem;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.12), rgba(255, 45, 141, 0.12));
     border-radius: 16px;
     margin-top: 1.5rem;
 }

 .overall-label {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-dark);
 }

 .overall-score {
     font-size: 3rem;
     font-weight: 900;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* Rating Methodology Section */
 .rating-methodology-section {
     margin-bottom: 2rem;
 }

 .methodology-title {
     text-align: center;
     font-size: 2rem;
     font-weight: 800;
     margin-bottom: 2.5rem;
     color: var(--text-dark);
 }

 .methodology-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
 }

 .methodology-card {
     background: white;
     border-radius: 16px;
     padding: 2rem 1.5rem;
     text-align: center;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .methodology-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
     border-color: var(--primary-teal);
 }

 .methodology-card .method-icon {
     width: 60px;
     height: 60px;
     margin: 0 auto 1.2rem;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.1), rgba(255, 45, 141, 0.1));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .methodology-card .method-icon i {
     font-size: 1.8rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .methodology-card h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.8rem;
     color: var(--text-dark);
 }

 .methodology-card p {
     font-size: 0.9rem;
     color: var(--text-gray);
     margin: 0;
     line-height: 1.5;
 }

 /* CTA Banner */
 .reviews-cta-banner {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border: 2px solid transparent;
     background-image:
         linear-gradient(white, white),
         linear-gradient(135deg, #31adad, #ff2d8d);
     background-origin: border-box;
     background-clip: padding-box, border-box;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
 }

 .cta-content {
     text-align: left;
     flex: 1;
 }

 .reviews-cta-banner h3 {
     font-size: 2rem;
     font-weight: 900;
     margin-bottom: 0.5rem;
 }

 .reviews-cta-banner p {
     color: var(--text-gray);
     font-size: 1.05rem;
     margin: 0;
 }

 .reviews-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 1.2rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s;
     white-space: nowrap;
 }

 .reviews-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 45, 141, 0.4);
     color: white;
 }

 /* =================== RATING BAR ANIMATIONS =================== */
 /* Animation for Progress Bars */
 .bar-fill {
     width: 0 !important;
     transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1) !important;
 }

 .bar-fill.animate {
     width: var(--target-width) !important;
 }

 /* Fade in animation for rating bars */
 .rating-bar-item {
     opacity: 0;
     transform: translateX(-20px);
     transition: all 0.6s ease;
 }

 .rating-bar-item.fade-in {
     opacity: 1;
     transform: translateX(0);
 }

 /* Stagger animation delays */
 .rating-bar-item:nth-child(1) {
     transition-delay: 0.1s;
 }

 .rating-bar-item:nth-child(2) {
     transition-delay: 0.2s;
 }

 .rating-bar-item:nth-child(3) {
     transition-delay: 0.3s;
 }

 .rating-bar-item:nth-child(4) {
     transition-delay: 0.4s;
 }

 .rating-bar-item:nth-child(5) {
     transition-delay: 0.5s;
 }

 .rating-bar-item:nth-child(6) {
     transition-delay: 0.6s;
 }

 /* Overall rating scale animation */
 .overall-rating {
     opacity: 0;
     transform: scale(0.9);
     transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
     transition-delay: 0.8s;
 }

 .overall-rating.fade-in {
     opacity: 1;
     transform: scale(1);
 }


 /* Responsive */
 @media (max-width: 1200px) {
     .deals-content {
         grid-template-columns: 1fr;
     }

     .deals-cta-box {
         position: relative;
         top: 0;
     }

     .rating-main-content {
         grid-template-columns: 1fr;
     }

     .rating-categories-section {
         position: relative;
         top: 0;
     }

     .methodology-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {

     .deals-title,
     .reviews-title {
         font-size: 2rem;
     }

     .deals-left {
         padding: 2rem;
     }

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

     .reviews-cta-banner {
         padding: 2rem;
         flex-direction: column;
         text-align: center;
     }

     .cta-content {
         text-align: center;
     }

     .nav-menu {
         flex-wrap: wrap;
     }
 }