/*!
 * Gadgets Mela Premium - Main Stylesheet
 * Version: 1.0.0
 * Description: Premium affiliate marketing WordPress theme
 * Author: Gadgets Mela
 * Website: https://gadgetsmela2.com
 */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Root
   2. Reset & Base Styles
   3. Typography
   4. Utility Classes
   5. Header & Navigation
   6. Hero Section
   7. Category Cards
   8. Product Cards
   9. Blog Cards
   10. Deals Section
   11. Comparison Table
   12. Why Choose Section
   13. Newsletter Section
   14. WhatsApp Float Button
   15. Footer
   16. Sidebar
   17. Single Post/Page
   18. Comments
   19. Pagination
   20. Breadcrumbs
   21. Search Results
   22. 404 Page
   23. Animations
   24. Print Styles
   ============================================ */

/* ============================================
   1. CSS VARIABLES & ROOT
   ============================================ */
:root {
    /* Primary Colors */
    --primary-color: #1a1f36;
    --primary-dark: #0f1323;
    --primary-light: #2d3561;
    
    /* Accent Colors */
    --accent-color: #ff6b3d;
    --accent-hover: #e55a2b;
    --accent-light: rgba(255, 107, 61, 0.1);
    --secondary-accent: #00b4d8;
    
    /* Text Colors */
    --text-color: #2d3436;
    --text-light: #636e72;
    --text-muted: #b2bec3;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f1f3f5;
    --bg-dark: #1a1f36;
    
    /* Border Colors */
    --border-color: #e9ecef;
    --border-light: #f1f3f5;
    
    /* Status Colors */
    --success-color: #00c853;
    --warning-color: #ffd600;
    --danger-color: #ff1744;
    --info-color: #00b4d8;
    --star-color: #ffc107;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Courier New', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Layout */
    --container-max: 1280px;
    --container-narrow: 800px;
    --header-height: 72px;
    
    /* Z-index Layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

ul,
ol {
    list-style-position: inside;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2rem, 5vw, var(--text-5xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 3vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

small {
    font-size: var(--text-sm);
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding: var(--space-4) var(--space-6);
    margin: var(--space-8) 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

code {
    background: var(--bg-gray);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    font-family: var(--font-mono);
    font-size: 0.9em;
}

pre {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-6);
    border-radius: var(--radius);
    overflow-x: auto;
    margin: var(--space-6) 0;
}

pre code {
    background: none;
    color: inherit;
    padding: 0;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: var(--space-8) 0;
}

/* ============================================
   4. UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-5);
    width: 100%;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: var(--space-2); }
.gap-2 { gap: var(--space-4); }
.gap-3 { gap: var(--space-6); }
.gap-4 { gap: var(--space-8); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--text-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.9em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(255, 107, 61, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 61, 0.4);
    color: var(--text-white);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--text-xs);
    border-radius: 30px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--text-base);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xs);
    height: var(--header-height);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-4);
}

/* Site Branding */
.site-branding {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.custom-logo-link {
    display: block;
}

.custom-logo {
    height: 40px;
    width: auto;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.site-title span {
    color: var(--accent-color);
}

.site-description {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: 2px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.primary-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--text-sm);
    padding: 8px 0;
    display: block;
    position: relative;
    transition: var(--transition);
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 1px;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
    width: 100%;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    color: var(--accent-color);
}

/* Dropdown */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    padding: var(--space-2) 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu a {
    padding: 10px 20px;
    font-size: var(--text-sm);
}

.primary-menu .sub-menu a::after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.search-toggle {
    background: none;
    border: none;
    font-size: var(--text-xl);
    cursor: pointer;
    color: var(--text-color);
    padding: var(--space-2);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.search-toggle:hover {
    color: var(--accent-color);
    background: var(--bg-light);
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.mobile-menu-toggle:hover {
    background: var(--bg-light);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 1px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: var(--space-10) var(--space-5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-overlay);
    border-top: 1px solid var(--border-color);
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-3);
}

.search-form label {
    flex: 1;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: var(--text-base);
    transition: var(--transition);
    background: var(--bg-light);
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 107, 61, 0.1);
}

.search-form button[type="submit"] {
    flex-shrink: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    padding: var(--space-20) var(--space-6) var(--space-6);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition);
    z-index: var(--z-modal);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    background: none;
    border: none;
    font-size: var(--text-2xl);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--bg-light);
    transform: rotate(90deg);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: var(--space-1);
}

.mobile-menu a {
    display: block;
    padding: var(--space-3) 0;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent-color);
    padding-left: var(--space-2);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header Ad */
.header-ad-container {
    background: var(--bg-white);
    padding: var(--space-2) 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3561 50%, #1a1f36 100%);
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 61, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--text-white);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    margin-bottom: var(--space-5);
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 61, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero-trust {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    font-weight: 500;
}

.trust-item i {
    color: var(--success-color);
    font-size: var(--text-base);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: var(--bg-white);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 2;
    color: var(--text-color);
    min-width: 160px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-float-card.card-1 {
    top: 15%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 15%;
    right: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

.hero-float-card span {
    font-size: 28px;
}

.hero-float-card strong {
    font-size: var(--text-base);
    color: var(--primary-color);
    display: block;
}

.hero-float-card p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--text-light);
}

/* ============================================
   7. CATEGORY CARDS
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: var(--space-6);
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1) rotate(-5deg);
}

.category-card h3 {
    font-size: var(--text-base);
    margin-bottom: 0;
    transition: var(--transition);
}

.category-card:hover h3 {
    color: var(--accent-color);
}

.category-card p {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   8. PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 75%;
    background: var(--bg-gray);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-5);
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.product-badge.sale {
    background: var(--danger-color);
    animation: pulse-badge 2s infinite;
}

.product-badge.new {
    background: var(--secondary-accent);
}

.product-badge.best {
    background: var(--warning-color);
    color: var(--primary-color);
}

.product-details {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.product-title {
    font-size: var(--text-base);
    margin-bottom: var(--space-3);
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
    gap: var(--space-2);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.stars {
    color: var(--star-color);
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.product-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.product-price .currency {
    font-size: 0.8em;
    font-weight: 500;
}

.product-price .original-price {
    font-size: 0.75em;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: var(--space-2);
    font-weight: 400;
}

.product-price .discount {
    font-size: 0.7em;
    color: var(--success-color);
    margin-left: var(--space-2);
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: var(--space-2);
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px 16px;
}

/* ============================================
   9. BLOG CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    padding-top: 56.25%;
    background: var(--bg-gray);
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card-category {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--accent-color);
    color: var(--text-white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.blog-card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: var(--primary-color);
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* ============================================
   10. DEALS SECTION
   ============================================ */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.deal-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.deal-card::before {
    content: '🔥 HOT DEAL';
    position: absolute;
    top: 18px;
    right: -32px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.deal-discount {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.deal-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.deal-description {
    color: var(--text-light);
    margin-bottom: var(--space-5);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.deal-timer {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.timer-block {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 60px;
}

.timer-block .time {
    font-size: var(--text-2xl);
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.timer-block .label {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   11. COMPARISON TABLE
   ============================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 600px;
}

.comparison-table thead th {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-4) var(--space-5);
    text-align: left;
    font-weight: 600;
    font-size: var(--text-sm);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    border-radius: var(--radius) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.comparison-table td {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-color);
    font-size: var(--text-sm);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table .product-col {
    font-weight: 600;
    min-width: 180px;
}

.comparison-table .check {
    color: var(--success-color);
    font-weight: 700;
    font-size: var(--text-lg);
}

.comparison-table .times {
    color: var(--text-muted);
}

.comparison-table .highlight {
    background: rgba(255, 107, 61, 0.05);
}

/* ============================================
   12. WHY CHOOSE SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-8);
}

.feature-box {
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 61, 0.1), rgba(255, 107, 61, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 36px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.feature-box:hover .feature-icon span {
    animation: bounce-icon 0.6s ease;
}

.feature-box h3 {
    margin-bottom: var(--space-3);
    font-size: var(--text-lg);
}

.feature-box p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   13. NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), #2d3561);
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-inner h2 {
    color: var(--text-white);
    margin-bottom: var(--space-3);
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-size: var(--text-base);
    background: var(--bg-white);
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 61, 0.2);
}

/* ============================================
   14. WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    z-index: var(--z-sticky);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: #25D366;
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--text-sm);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: var(--text-white);
    animation: none;
}

.whatsapp-icon {
    font-size: 24px;
    animation: none;
}

/* ============================================
   15. FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-20) 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-col h3 {
    color: var(--text-white);
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
    font-size: var(--text-lg);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
    font-size: var(--text-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 61, 0.4);
    border-color: var(--accent-color);
    color: var(--text-white);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: var(--space-3);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-menu a:hover {
    color: var(--accent-color);
    padding-left: var(--space-2);
}

.footer-menu a i {
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* ============================================
   16. SIDEBAR
   ============================================ */
.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-10);
    margin: var(--space-8) 0;
}

.content-main {
    min-width: 0;
}

.sidebar {
    background: var(--bg-white);
    padding: var(--space-6);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-height) + var(--space-5));
    align-self: start;
    height: fit-content;
}

.widget {
    margin-bottom: var(--space-8);
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

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

.widget ul li {
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border-light);
}

.widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-color);
    font-size: var(--text-sm);
    transition: var(--transition);
}

.widget ul li a:hover {
    color: var(--accent-color);
}

.widget select {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

/* Ad Widget */
.ad-widget {
    margin: var(--space-8) 0;
    text-align: center;
    background: var(--bg-light);
    padding: var(--space-4);
    border-radius: var(--radius);
}

.ad-widget.in-content {
    margin: var(--space-8) 0;
}

/* ============================================
   17. SINGLE POST/PAGE
   ============================================ */
.single-article,
.page-article {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.article-header {
    margin-bottom: var(--space-8);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.article-category {
    background: var(--accent-color);
    color: var(--text-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.article-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    margin-bottom: var(--space-4);
}

.article-excerpt {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.7;
}

.article-featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-8);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: var(--text-base);
    line-height: 1.8;
}

.article-content h2 {
    margin-top: var(--space-10);
    font-size: var(--text-2xl);
}

.article-content h3 {
    margin-top: var(--space-8);
    font-size: var(--text-xl);
}

.article-content p {
    margin-bottom: var(--space-5);
}

.article-content img {
    border-radius: var(--radius);
    margin: var(--space-6) 0;
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-5);
    padding-left: var(--space-6);
}

.article-content li {
    margin-bottom: var(--space-2);
}

.article-content a {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--accent-hover);
}

/* Article Footer */
.article-footer {
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.article-tags span {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--primary-color);
}

.tag-link {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: var(--text-xs);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tag-link:hover {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.article-share span {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-right: var(--space-2);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
    font-size: var(--text-sm);
}

.share-btn:hover {
    transform: translateY(-2px);
    color: var(--text-white);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.email { background: #ea4335; }

/* Affiliate Disclosure */
.affiliate-disclosure {
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-color);
    font-size: var(--text-xs);
    color: var(--text-light);
    line-height: 1.6;
}

.affiliate-disclosure strong {
    color: var(--primary-color);
}

/* Related Posts */
.related-posts {
    margin-top: var(--space-12);
}

.related-posts h2 {
    margin-bottom: var(--space-6);
    font-size: var(--text-2xl);
}

/* ============================================
   18. SECTIONS
   ============================================ */
.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    margin: var(--space-4) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   19. PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    padding: 0 var(--space-3);
}

.page-numbers.current {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(255, 107, 61, 0.3);
}

.page-numbers:hover:not(.current) {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.page-numbers.dots {
    border: none;
    background: none;
    pointer-events: none;
}

/* ============================================
   20. BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-4);
}

.breadcrumbs a {
    color: var(--text-color);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs .separator {
    margin: 0 var(--space-2);
    color: var(--text-muted);
}

.breadcrumbs span {
    color: var(--primary-color);
    font-weight: 500;
}

/* ============================================
   21. 404 PAGE
   ============================================ */
.error-404 {
    text-align: center;
    padding: var(--space-20) 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: var(--space-2);
    animation: float 3s ease-in-out infinite;
}

.error-404 h2 {
    margin-bottom: var(--space-3);
}

.error-404 p {
    color: var(--text-light);
    max-width: 400px;
    margin-bottom: var(--space-8);
}

/* ============================================
   22. REVIEW BOXES
   ============================================ */
.review-box {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: var(--radius);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.review-score {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 107, 61, 0.4);
    flex-shrink: 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.pros-box,
.cons-box {
    padding: var(--space-6);
    border-radius: var(--radius);
}

.pros-box {
    background: rgba(0, 200, 83, 0.05);
    border: 1px solid var(--success-color);
}

.cons-box {
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid var(--danger-color);
}

.pros-box h4,
.cons-box h4 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.pros-box h4 { color: var(--success-color); }
.cons-box h4 { color: var(--danger-color); }

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li,
.cons-box li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
}

.pros-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.cons-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: 700;
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-white);
}

.faq-question {
    padding: var(--space-5) var(--space-6);
    background: var(--bg-white);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--text-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    gap: var(--space-4);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-5);
    display: none;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   23. ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: calc(var(--z-sticky) - 1);
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   24. COMMENTS
   ============================================ */
.comments-area {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.comment-author img {
    border-radius: 50%;
    margin-right: var(--space-3);
}

.comment-meta {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-3);
}

.comment-content {
    font-size: var(--text-sm);
    line-height: 1.7;
}

.comment-reply-link {
    font-size: var(--text-xs);
    color: var(--accent-color);
    font-weight: 600;
}

/* Comment Form */
.comment-respond {
    margin-top: var(--space-8);
}

.comment-form textarea {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: var(--text-base);
    min-height: 120px;
    resize: vertical;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.1);
}

.form-submit input[type="submit"] {
    background: var(--accent-color);
    color: var(--text-white);
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit input[type="submit"]:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 61, 0.3);
}

/* ============================================
   25. SEARCH RESULTS
   ============================================ */
.search-results .page-header {
    margin-bottom: var(--space-8);
}

.search-results .page-title span {
    color: var(--accent-color);
}

.no-results {
    text-align: center;
    padding: var(--space-12) 0;
}

.no-results .search-form {
    max-width: 500px;
    margin: var(--space-6) auto 0;
}

/* ============================================
   26. RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: var(--space-8);
    }
    
    .header-cta {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 64px;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .primary-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding: var(--space-12) 0;
    }
    
    .hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .category-card {
        padding: var(--space-6) var(--space-4);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: var(--space-4);
        right: var(--space-4);
    }
    
    .whatsapp-button {
        padding: 12px 20px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .single-article,
    .page-article {
        padding: var(--space-5);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .mobile-menu {
        width: 280px;
    }
}

/* ============================================
   27. PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .back-to-top,
    .sidebar,
    .hero-float-card,
    .search-overlay,
    .mobile-menu,
    .mobile-menu-overlay,
    .header-ad-container,
    .newsletter-section,
    .article-share,
    .comments-area {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .single-article,
    .page-article {
        box-shadow: none;
        border: none;
        padding: 0;
    }
}

/* ============================================
   28. DARK MODE SUPPORT
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* Add dark mode support if needed in future */
}