/*
Theme Name: Tech Siru
Theme URI: https://techsiru.com
Author: Antigravity AI
Author URI: https://techsiru.com
Description: A premium, dynamic tech review WordPress theme designed for genuine tech results and affiliate marketing.
Version: 1.0.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: techsiru
*/

:root {
    --bg-dark: #0a0b10;
    --bg-card: #13141c;
    --primary: #d46b45;
    --primary-hover: #e87b55;
    --secondary: #2c85d1;
    --text-main: #f0f2f8;
    --text-muted: #b5bccc;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 11, 16, 0.7);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
.highlight { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; text-align: center; transition: var(--transition); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #e68562); color: #fff; box-shadow: 0 4px 15px rgba(212, 107, 69, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 107, 69, 0.4); color: #fff; }
.btn-secondary { color:#ffffff; opacity: 1; border: 1px solid #ffffff; background: transparent; }
.btn-secondary:hover, .btn-secondary:focus { background:#ffffff; color:#111; transform: translateY(-2px); }
.btn-large { padding: 1rem 2.25rem; font-size: 1.1rem; border-radius: 12px; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; width: 100%; }

.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color); padding: 1rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 900; letter-spacing: -0.5px; }
.logo img { height: 45px; width: auto; }
.logo-text { color: #fff; }
.custom-logo { max-height: 60px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.hero { position: relative; padding: 14rem 0 8rem; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-bg::before, .hero-bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; pointer-events: none; }
.hero-bg::before { width: 600px; height: 600px; background: var(--primary); top: -20%; left: -10%; animation: floatHeroGlow 12s ease-in-out infinite alternate; }
.hero-bg::after { width: 500px; height: 500px; background: var(--secondary); bottom: -10%; right: -10%; animation: floatHeroGlow2 15s ease-in-out infinite alternate-reverse; }
@keyframes floatHeroGlow { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(300px, 150px) scale(1.2); } }
@keyframes floatHeroGlow2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-250px, -200px) scale(1.3); } }
.hero-video-bg { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 2; transform: translateX(-50%) translateY(-50%); object-fit: cover; opacity: 0.35; mix-blend-mode: screen; }
.hero-content { max-width: 800px; }
.hero-badge { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-title { font-size: 4.5rem; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 650px; font-weight: 400; }
.hero-actions { display: flex; gap: 1.25rem; }

.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.75rem; margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; }

.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.card:hover { transform: translateY(-8px); border-color: rgba(212, 107, 69, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

.card-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-badge { align-self: flex-start; background: rgba(212, 107, 69, 0.1); color: var(--primary); padding: 0.35rem 0.85rem; border-radius: 6px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.25rem; border: 1px solid rgba(212, 107, 69, 0.2); }
.card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.card p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; flex-grow: 1; }
.card-footer { display: flex; flex-direction: column; gap: 1rem; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.rating { color: #ffb800; font-weight: 600; display: flex; align-items: center; gap: 0.35rem; font-size: 1.1rem; }
.rating i { font-size: 1rem; }

.trust-section { background: linear-gradient(to right, rgba(19, 20, 28, 0.9), rgba(19, 20, 28, 0.5)); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.trust-text h2 { font-size: 2.75rem; margin-bottom: 1.5rem; }
.trust-text p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; }
.trust-list { display: flex; flex-direction: column; gap: 1.25rem; }
.trust-list li { display: flex; align-items: center; gap: 1rem; font-weight: 500; font-size: 1.05rem; background: rgba(255,255,255,0.03); padding: 1rem 1.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.trust-list i { color: var(--primary); font-size: 1.2rem; }
.trust-stats { display: flex; gap: 2rem; justify-content: center; }
.stat-box { background: rgba(255,255,255,0.02); padding: 3rem 2rem; border-radius: 20px; border: 1px solid var(--border-color); text-align: center; min-width: 200px; backdrop-filter: blur(10px); }
.stat-number { font-size: 3.5rem; background: linear-gradient(135deg, var(--secondary), #70a6ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
.stat-box p { color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

.footer { background: #06070a; padding: 6rem 0 2rem; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-muted); margin: 1.5rem 0; max-width: 320px; font-size: 1.05rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.05); }
.social-links a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer-links h3, .footer-contact h3 { font-size: 1.2rem; margin-bottom: 1.5rem; font-family: var(--font-heading); color: #fff; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-links a, .footer-contact li { color: var(--text-muted); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; }
.footer-contact i { color: var(--secondary); font-size: 1.1rem; margin-top: 3px; }
.footer-bottom { padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.05); text-align: center; color: var(--text-muted); font-size: 0.95rem; }
.affiliate-disclosure { margin-top: 1.5rem; font-size: 0.85rem; opacity: 0.9; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.8; color: var(--text-muted); }
.affiliate-disclosure strong { color: var(--text-main); font-weight: 700; }
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
    .trust-stats { justify-content: flex-start; }
    .hero-title { font-size: 3.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .nav-container { flex-direction: column !important; align-items: stretch !important; gap: 12px; }
    .nav-container .logo { order: 1; margin: 0 auto; }
    .header-actions { order: 2; display: flex; flex-direction: column; width: 100%; gap: 10px; }
    .header-actions .search-form { width: 100%; display: flex !important; }
    .header-actions .search-field { width: 100% !important; }
    .header-actions .btn { display: block !important; width: 100%; text-align: center; }
    .mobile-menu-toggle { order: 3; margin: 0 auto; display: block !important; }
    .nav-links { display: none; }
    .hero { padding: 10rem 0 6rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-stats { flex-direction: column; }
    .section { padding: 4rem 0; }
}

/* Page Styles */
.page-header { padding: 10rem 0 4rem; background: linear-gradient(to bottom, #0a0b10, #13141c); text-align: center; border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 3.5rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-content { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; font-size: 1.1rem; color: var(--text-muted); }
.page-content h2 { color: var(--text-main); margin: 2.5rem 0 1rem; font-size: 2rem; }
.page-content h3 { color: var(--text-main); margin: 1.5rem 0 1rem; font-size: 1.5rem; }
.page-content p { margin-bottom: 1.25rem; }
.page-content ul { list-style: disc; margin-left: 2rem; margin-bottom: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-content a { color: var(--secondary); text-decoration: underline; }
.page-content a:hover { color: var(--primary); }

/* Single Post Styles */
.post-meta { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.95rem; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 0.5rem; }
.post-meta i { color: var(--primary); }
.post-meta a { color: var(--text-muted); transition: var(--transition); }
.post-meta a:hover { color: var(--primary); }

.post-area { max-width: 800px; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,0.05); color: var(--text-muted); border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); border: 1px solid var(--border-color); }
.back-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateX(-3px); }

.post-featured-image { margin-bottom: 3rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); }
.post-featured-image img { width: 100%; height: auto; display: block; }
.post-body { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); }
.post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 2rem 0; }
.post-body h2, .post-body h3 { color: var(--text-main); margin: 2.5rem 0 1rem; }
.post-body p { margin-bottom: 1.5rem; }
.post-body a { color: var(--secondary); text-decoration: underline; }
.post-body a:hover { color: var(--primary); }

.post-navigation { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-color); font-weight: 600; }
.post-navigation a {
    display: inline-block;
    padding: 12px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    transition: var(--transition);
}
.post-navigation a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}
.nav-previous { text-align: left; }
.nav-next { text-align: right; }

.post-comments { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-color); }

/* Blog Pagination */
.blog-pagination { margin-top: 4rem; text-align: center; }
.blog-pagination .nav-links { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.blog-pagination a, .blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.blog-pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}
.blog-pagination .current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Share Buttons */
.post-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.share-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-right: 10px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}
.share-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.share-fb { background-color: #1877F2; }
.share-x { background-color: #111111; border: 1px solid rgba(255,255,255,0.1); }
.share-pin { background-color: #E60023; }
.share-wa { background-color: #25D366; }
.share-tiktok { background-color: #000000; border: 1px solid rgba(255,255,255,0.2); }

/* Water Bubble Minimalist Labels */
@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes bubbleRipple {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
}

.tag-bubble-wrapper {
    display: inline-block;
    animation: floatBubble 5s ease-in-out infinite;
    /* Soften the transform for performance */
    will-change: transform;
}

/* Staggered animation delays for an organic fluid feel */
.tag-bubble-wrapper:nth-child(2n) { animation-delay: 1.5s; animation-duration: 6s; }
.tag-bubble-wrapper:nth-child(3n) { animation-delay: 0.8s; animation-duration: 4.5s; }
.tag-bubble-wrapper:nth-child(5n) { animation-delay: 2.5s; animation-duration: 5.5s; }

.tag-label {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px; /* Pill shape like a bubble */
    background: rgba(255, 255, 255, 0.03); /* Glassmorphism base */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Minimalist thin border */
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.tag-count {
    opacity: 0.6;
    font-size: 0.85em;
    margin-left: 6px;
    font-weight: 400;
}

.tag-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.05);
    animation: bubbleRipple 1s cubic-bezier(0, 0.5, 0.5, 1);
}

.tag-label:hover .tag-count {
    opacity: 0.9;
}



/* Phase 2 Additions */
.card-thumb { aspect-ratio: 16/9; background: #1f1f1f; overflow: hidden; border-bottom: 1px solid var(--border-color); }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.affiliate-disclosure { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); padding: 15px; border-radius: 8px; margin-bottom: 25px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.affiliate-disclosure strong { color: var(--text-main); }
.affiliate-disclosure a { color: var(--primary); text-decoration: underline; }

.price-disclaimer { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-top: 10px; }

.author-bio-box { display: flex; gap: 20px; background: var(--bg-card); border: 1px solid var(--border-color); padding: 25px; border-radius: 8px; margin-top: 40px; }
.author-bio-box img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.author-bio-text h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: var(--font-heading); }
.author-bio-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 { color: #fff; font-family: var(--font-heading); margin-bottom: 15px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.newsletter-form { display: flex; gap: 10px; margin-top: 10px; }
.newsletter-form input { padding: 10px; border-radius: 5px; border: none; flex-grow: 1; }

/* Accessibility */
.skip-link{position:absolute;left:-9999px;top:auto;}
.skip-link:focus{left:0;top:0;background:#000;color:#fff;padding:12px 16px;z-index:9999;}


/* Dropdown Animation */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
}
.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
}

/* Premium Comment Form Styles */
#comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.comments-title, #reply-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-main);
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}
.comment-body {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}
.comment-author .avatar {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.comment-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.comment-meta b {
    font-size: 1.1rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}
.comment-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.6;
}
.reply a {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.comment-respond {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comment-form p { margin: 0; }
.comment-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
}
.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}
.comment-form .form-submit input[type="submit"] {
    background: linear-gradient(135deg, var(--primary), #e68562);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 107, 69, 0.25);
}
.comment-form .form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 107, 69, 0.4);
}
.comment-notes, .logged-in-as {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* Removed Dark Mode overrides */

/* Headline Slide Animation */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.post-headline-animated {
    animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Premium Animated Product Box */
.techsiru-product-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.techsiru-product-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(232, 85, 78, 0.15);
    border-color: var(--primary);
}
/* Shiny sweep animation */
.techsiru-product-box::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s;
}
.techsiru-product-box:hover::before {
    left: 200%;
}

.techsiru-product-img {
    flex: 0 0 200px;
    border-radius: 12px;
    overflow: hidden;
}
.techsiru-product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.techsiru-product-content {
    flex: 1;
}
.techsiru-product-title {
    font-size: 1.5rem !important;
    color: var(--text-main) !important;
    margin: 0 0 10px 0 !important;
    font-family: var(--font-heading);
}
.techsiru-product-score {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.techsiru-product-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.techsiru-product-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(232, 85, 78, 0.3);
}
.techsiru-product-btn:hover {
    box-shadow: 0 6px 20px rgba(232, 85, 78, 0.5);
    color: #fff !important;
}

@media (max-width: 768px) {
    .techsiru-product-box { flex-direction: column; text-align: center; gap: 20px; padding: 20px; }
    .techsiru-product-img { flex: 0 0 auto; width: 100%; max-width: 300px; margin: 0 auto; }
}

