/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

        /* CSS RESET & CUSTOM PROPERTIES */
        :root {
            --primary: #f25c05;
            --primary-hover: #d14f04;
            --dark: #0f172a;
            --text-main: #334155;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --red: #ef4444;
            --green: #16a34a;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            --shadow-hover: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-main);
            background-color: #f8fafc;
            line-height: 1.5;
            padding-bottom: 0;
        }

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input {
            font-family: inherit;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* UTILITIES */
        .flex { display: flex; }
        .grid { display: grid; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .text-center { text-align: center; }
        .badge {
            background-color: var(--red);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
        }
        .section-header {
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .section-title {
            font-size: 1.5rem;
            color: var(--dark);
            font-weight: 800;
        }
        .view-all {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .view-all:hover {
            color: var(--primary-hover);
        }

        /* DESKTOP HEADER */
        .site-header {
            background-color: var(--dark);
            color: white;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-main {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.5rem;
            color: white;
        }
        .logo span {
            color: var(--primary);
        }
        .logo-img {
            height: 36px;
            width: auto;
        }
        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 40px;
            position: relative;
        }
        .search-bar input {
            width: 100%;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 16px 10px 44px;
            border-radius: 8px;
            color: white;
            outline: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .search-bar input:focus {
            background-color: white;
            color: var(--dark);
            border-color: var(--primary);
        }
        .search-bar svg {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            fill: #94a3b8;
            width: 18px;
            height: 18px;
            transition: var(--transition);
        }
        .search-bar input:focus + svg {
            fill: var(--primary);
        }
        .header-actions {
            display: flex;
            gap: 24px;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .header-action-item {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            position: relative;
        }
        .header-action-item .count-badge {
            background-color: var(--red);
            color: white;
            font-size: 10px;
            font-weight: 700;
            border-radius: 10px;
            padding: 1px 6px;
            position: absolute;
            top: -6px;
            right: -10px;
        }

        /* HEADER NAVIGATION MENU */
        .nav-menu-bar {
            background-color: white;
            border-bottom: 1px solid var(--border);
        }
        .nav-menu-list {
            list-style: none;
            display: flex;
            gap: 24px;
            height: 48px;
            align-items: center;
        }
        .nav-menu-item a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 6px;
            height: 48px;
            border-bottom: 2px solid transparent;
        }
        .nav-menu-item a:hover {
            color: var(--primary);
        }
        .nav-menu-item.active a {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        /* NAVIGATION DROPDOWNS */
        .nav-menu-item {
            position: relative;
        }
        .nav-menu-item.has-dropdown > a {
            padding-right: 4px;
        }
        .nav-menu-item .arrow {
            font-size: 0.7rem;
            transition: transform 0.2s ease;
            display: inline-block;
        }
        .nav-menu-item:hover .arrow {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            border-top: 2px solid var(--primary);
            border-radius: 0 0 6px 6px;
            list-style: none;
            padding: 8px 0;
            min-width: 220px;
            display: none;
            z-index: 99999;
        }
        .dropdown-menu li {
            width: 100%;
            margin: 0;
            padding: 0;
        }
        .dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-main);
            height: auto;
            border-bottom: none;
            transition: var(--transition);
        }
        .dropdown-menu li a:hover {
            background-color: var(--light);
            color: var(--primary);
            padding-left: 24px;
        }
        .nav-menu-item:hover .dropdown-menu {
            display: block;
        }

        /* HERO SECTION */
        .hero {
            padding: 40px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
            overflow: hidden;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-content h2 {
            font-size: 3.2rem;
            line-height: 1.15;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 16px;
        }
        .hero-content h2 span {
            color: var(--primary);
        }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 28px;
            max-width: 540px;
        }
        .hero-ctas {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }
        .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        .btn-outline {
            background-color: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background-color: #fff8f5;
            transform: translateY(-2px);
        }
        .hero-image-container {
            position: relative;
        }
        .hero-image {
            width: 100%;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
        }
        .hero-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-main);
        }
        .hero-feature-item svg {
            width: 18px;
            height: 18px;
            fill: var(--primary);
        }

        /* CATEGORIES QUICK BAR */
        .categories-quickbar {
            padding: 24px 0;
            background-color: white;
            border-bottom: 1px solid var(--border);
        }
        .quickbar-list {
            display: flex;
            justify-content: space-between;
            overflow-x: auto;
            gap: 16px;
            padding-bottom: 10px;
            scrollbar-width: none;
        }
        .quickbar-list::-webkit-scrollbar {
            display: none;
        }
        .quickbar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
            flex-shrink: 0;
            width: 80px;
            cursor: pointer;
        }
        .quickbar-icon-wrap {
            width: 52px;
            height: 52px;
            background-color: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            position: relative;
            transition: var(--transition);
        }
        .quickbar-item:hover .quickbar-icon-wrap {
            background-color: #ffebe0;
            transform: translateY(-4px);
        }
        .quickbar-item span {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-main);
        }
        .quickbar-icon-wrap .badge-hot {
            position: absolute;
            top: -6px;
            right: -10px;
            background-color: var(--red);
            color: white;
            font-size: 8px;
            font-weight: 800;
            padding: 2px 4px;
            border-radius: 10px;
        }

        /* HOME GRID SECTION */
        .home-main-section {
            padding: 40px 0;
        }
        .home-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 24px;
        }
        .home-col {
            background-color: white;
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 24px;
            box-shadow: var(--shadow);
        }

        /* COLUMN 1: TOP SMART BUYING GUIDES */
        .guide-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .guide-item {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .guide-num {
            width: 24px;
            height: 24px;
            background-color: #ffebe0;
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .guide-thumb {
            width: 72px;
            height: 72px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .guide-meta {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .guide-item-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.35;
        }
        .guide-submeta {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* COLUMN 2: TODAY'S PRICE DROPS */
        .deal-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .deal-card {
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: var(--transition);
        }
        .deal-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--primary);
        }
        .deal-badge-wrap {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            z-index: 2;
        }
        .deal-badge-disc {
            background-color: var(--red);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .deal-badge-promo {
            background-color: var(--dark);
            color: #fcd34d;
            font-size: 9px;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
        }
        .deal-img-wrap {
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .deal-img-wrap img {
            max-height: 100px;
            object-fit: contain;
        }
        .deal-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.35;
            margin-bottom: 8px;
            height: 38px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .price-wrap {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }
        .curr-price {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--dark);
        }
        .orig-price {
            font-size: 0.8rem;
            color: var(--text-light);
            text-decoration: line-through;
        }

        /* COLUMN 3: LARGE APPLIANCES DEALS */
        .appliance-deal-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .appliance-deal-item {
            display: flex;
            gap: 16px;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .appliance-deal-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .appliance-img-wrap {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-light);
            border-radius: 8px;
            flex-shrink: 0;
        }
        .appliance-img-wrap img {
            max-height: 54px;
            object-fit: contain;
        }
        .appliance-detail {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .appliance-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--dark);
        }

        /* SHOPPING SMARTER EVERY DAY & LATEST ARTICLES (6 COLUMNS ROW ON DESKTOP) */
        .articles-section {
            padding: 40px 0;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .article-card {
            background-color: white;
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .article-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-6px);
        }
        .article-img {
            height: 120px;
            width: 100%;
            object-fit: cover;
        }
        .article-card-content {
            padding: 12px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card-cat {
            color: var(--primary);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .article-card-title {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.35;
            height: 48px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        /* EXPLORE SECTIONS */
        .explore-appliances-section {
            padding: 40px 0;
        }
        .explore-appliances-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .explore-appliance-card {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(37,99,235,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .explore-appliance-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .explore-appliance-card:nth-child(2n) {
            background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
        }
        .explore-appliance-card:nth-child(3n) {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        }
        .explore-appliance-img-wrap {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .explore-appliance-img-wrap img {
            max-height: 90px;
            object-fit: contain;
            filter: drop-shadow(0 8px 12px rgba(15,23,42,0.08));
        }
        .explore-appliance-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .explore-appliance-desc {
            font-size: 0.75rem;
            color: var(--text-light);
            line-height: 1.3;
        }

        /* FIND PRODUCTS BY PRICE RANGE COMPONENT */
        .price-range-section {
            padding: 40px 0;
            background-color: white;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .slider-controls {
            display: flex;
            gap: 10px;
        }
        .slider-arrow {
            width: 36px;
            height: 36px;
            background-color: #f8fafc;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            cursor: pointer;
            transition: var(--transition);
        }
        .slider-arrow:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .slider-arrow svg {
            width: 20px;
            height: 20px;
        }
        .price-range-slider {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 10px 4px 20px;
            scrollbar-width: none; /* Hide standard Firefox scrollbar */
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
        }
        .price-range-slider::-webkit-scrollbar {
            display: none; /* Hide Chrome/Safari scrollbar */
        }
        .price-range-card {
            flex: 0 0 280px;
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow);
            scroll-snap-align: start;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .price-range-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        /* Card-specific pastels matching mockup design */
        .card-mobiles { background-color: #f0f7ff; }
        .card-laptops { background-color: #f5f8fc; }
        .card-tvs { background-color: #fff7ed; }
        .card-fridges { background-color: #faf5ff; }
        .card-acs { background-color: #f0f9ff; }
        .card-washers { background-color: #f0fdf4; }

        .price-range-icon-wrap {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: #1e3a8a;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }
        .price-range-card-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: #1e293b;
            text-align: center;
            margin-bottom: 20px;
        }
        .price-range-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .price-range-link-item a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            font-size: 0.85rem;
            font-weight: 600;
            color: #475569;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .price-range-link-item:last-child a {
            border-bottom: none;
        }
        .price-range-link-item a:hover {
            color: var(--primary);
        }
        .price-range-link-item a svg {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            color: #94a3b8;
        }
        .price-range-link-item a:hover svg {
            color: var(--primary);
            transform: translateX(2px);
        }

        /* EXCLUSIVE BANK OFFERS */
        .bank-offers-section {
            padding: 40px 0;
        }
        .bank-offers-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr) auto;
            gap: 16px;
            align-items: center;
        }
        .bank-card {
            background-color: white;
            border-radius: 12px;
            border: 1px solid var(--border);
            padding: 16px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100px;
        }
        .bank-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .bank-logo {
            font-size: 1.15rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #1e3a8a;
            margin-bottom: 6px;
        }
        .bank-logo span {
            color: var(--primary);
        }
        .bank-discount-text {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--dark);
        }
        .bank-details-text {
            font-size: 0.7rem;
            color: var(--text-light);
        }
        .btn-bank-all {
            background-color: var(--primary);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: 800;
            cursor: pointer;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 15px -3px rgba(242, 92, 5, 0.2);
        }
        .btn-bank-all:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }

        /* BRANDS SECTION */
        .brands-section {
            padding: 40px 0;
            background-color: white;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .brands-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .brand-badge {
            font-size: 1.1rem;
            font-weight: 900;
            color: #94a3b8;
            transition: var(--transition);
        }
        .brand-badge:hover {
            color: var(--dark);
            transform: scale(1.05);
        }

        /* POPULAR PRODUCT COMPARISONS */
        .comparisons-section {
            padding: 40px 0;
        }
        .comparisons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .comparison-card {
            background-color: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .comparison-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .comparison-images {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            position: relative;
        }
        .comp-product-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            background-color: var(--bg-light);
            border-radius: 50%;
            padding: 10px;
            border: 2px solid white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .vs-badge {
            width: 32px;
            height: 32px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            border: 3px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: absolute;
            z-index: 2;
        }
        .comparison-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            text-align: center;
            line-height: 1.4;
        }

        /* SHARED PHOTO FOOTER PART (TRENDING, PRICE GRID, POPULAR SEARCHES) */
        .shared-footer-widgets {
            padding: 60px 0;
            background-color: #fafbfc;
            border-top: 1px solid var(--border);
        }
        .widgets-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr 1fr;
            gap: 30px;
        }
        .widget-card {
            background-color: white;
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 10px;
        }
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .widget-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .widget-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
        }
        .widget-list-item svg {
            width: 8px;
            height: 8px;
            fill: none;
            stroke: #94a3b8;
            stroke-width: 3;
            flex-shrink: 0;
        }
        .widget-list-item a:hover {
            color: var(--primary);
            transform: translateX(4px);
        }
        
        /* Find by Price Buttons */
        .price-btn-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 28px;
        }
        .price-btn {
            background-color: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-main);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }
        .price-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 4px 10px rgba(15,23,42,0.04);
            transform: translateY(-1px);
        }

        /* Price Drop Widget Box */
        .price-alerts-box {
            background-color: #f8fafc;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
        }
        .alerts-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        .alerts-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--dark);
        }
        .bell-icon-wrap {
            width: 36px;
            height: 36px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            position: relative;
            color: var(--dark);
        }
        .bell-dot {
            width: 7px;
            height: 7px;
            background-color: #3b82f6;
            border-radius: 50%;
            position: absolute;
            top: 2px;
            right: 2px;
            border: 1px solid white;
        }
        .alerts-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        .alerts-form {
            display: flex;
            gap: 10px;
        }
        .alerts-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 6px;
            outline: none;
            font-size: 0.85rem;
        }
        .alerts-form input:focus {
            border-color: var(--primary);
        }
        .alerts-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .alerts-form button:hover {
            background-color: var(--primary-hover);
        }

        /* WHY TRUST TEAM STRIP */
        .why-trust-wrap {
            padding: 40px 0;
            background-color: white;
            text-align: center;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .why-trust-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 30px;
        }
        .why-trust-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .trust-col {
            padding: 0 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .trust-circle-icon {
            width: 48px;
            height: 48px;
            background-color: #f8fafc;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--dark);
            transition: var(--transition);
        }
        .trust-col:hover .trust-circle-icon {
            background-color: #ffebe0;
            color: var(--primary);
            transform: rotateY(180deg);
        }
        .trust-col-title {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .trust-col-desc {
            font-size: 0.75rem;
            color: var(--text-light);
            line-height: 1.35;
        }

        /* NEWSLETTER BANNER & MAIN FOOTER */
        .site-footer {
            background-color: #0b1329;
            color: #94a3b8;
            padding: 0 0 30px;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .newsletter-banner {
            padding: 40px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            background-color: #090e1a;
        }
        .newsletter-banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .newsletter-left-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1.2;
        }
        .newsletter-info {
            display: flex;
            flex-direction: column;
        }
        .newsletter-info h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin: 0 0 4px;
        }
        .newsletter-info p {
            color: #94a3b8;
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.4;
        }
        .newsletter-form-wrap {
            flex: 1.5;
            display: flex;
            justify-content: center;
        }
        .newsletter-form {
            display: flex;
            width: 100%;
            max-width: 500px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            padding: 0;
        }
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            outline: none;
            background: white;
            color: #1e293b;
            font-size: 0.95rem;
        }
        .newsletter-form input::placeholder {
            color: #94a3b8;
        }
        .newsletter-form button {
            background-color: #ff5e00;
            color: white;
            border: none;
            padding: 0 28px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .newsletter-form button:hover {
            background-color: #e05300;
        }
        .newsletter-right-wrap {
            flex: 0.8;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        /* Footer columns layout */
        .footer-content-wrap {
            padding: 60px 0 40px;
        }
        .footer-cols {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
            gap: 40px;
        }
        .footer-logo-wrap {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
        }
        .footer-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            margin: 0;
        }
        .footer-logo span {
            color: #ff5e00;
        }
        .footer-logo-sub {
            display: block;
            font-size: 0.75rem;
            color: #64748b;
            margin-bottom: 16px;
            font-weight: 500;
        }
        .footer-about-desc {
            line-height: 1.6;
            color: #94a3b8;
            font-size: 0.85rem;
            margin-bottom: 24px;
        }
        .social-links {
            display: flex;
            gap: 12px;
        }
        .social-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
        }
        .social-icon:hover {
            transform: scale(1.1);
        }
        .footer-col-title {
            color: white;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0;
            margin: 0;
        }
        .footer-links-list a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links-list a:hover {
            color: white;
            padding-left: 2px;
        }
        .footer-download-col {
            display: flex;
            flex-direction: column;
        }
        .download-desc {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.5;
            margin: 0 0 16px 0;
        }
        .app-download-badges {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .app-badge-btn {
            background-color: #000000;
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid #334155;
            width: 100%;
            max-width: 180px;
            box-sizing: border-box;
            transition: var(--transition);
            text-decoration: none;
        }
        .app-badge-btn:hover {
            border-color: #ff5e00;
            background-color: #090e1a;
        }
        .app-badge-btn svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        .app-badge-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
            text-align: left;
        }
        .app-badge-text span {
            font-size: 0.65rem;
            color: #94a3b8;
            text-transform: uppercase;
            font-weight: 500;
        }
        .app-badge-text strong {
            font-size: 0.85rem;
            font-weight: 700;
            color: white;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 30px;
            text-align: center;
        }
        .footer-bottom p {
            color: #64748b;
            font-size: 0.8rem;
            margin: 0;
        }

        /* MOBILE HEADER & NAVIGATION */
        .mobile-header {
            display: none;
            background-color: var(--dark);
            color: white;
            height: 56px;
            padding: 0 16px;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .mobile-logo {
            font-weight: 800;
            font-size: 1.25rem;
            color: white;
        }
        .mobile-logo span {
            color: var(--primary);
        }
        .mobile-header-actions {
            display: flex;
            gap: 16px;
        }
        .mobile-nav-bottom {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            height: 60px;
            border-top: 1px solid var(--border);
            z-index: 100;
            grid-template-columns: repeat(5, 1fr);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-light);
            gap: 4px;
            position: relative;
        }
        .mobile-nav-item.active {
            color: var(--primary);
        }
        .mobile-nav-item .badge-count {
            position: absolute;
            top: 6px;
            right: 20px;
            background-color: var(--red);
            color: white;
            font-size: 8px;
            font-weight: 800;
            padding: 1px 4px;
            border-radius: 10px;
        }

        /* RESPONSIVE MEDIA QUERIES */
        @media (max-width: 1024px) {
            .home-grid {
                grid-template-columns: 1fr;
            }
            .explore-appliances-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .comparisons-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .articles-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .bank-offers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .btn-bank-all {
                grid-column: span 3;
                height: 50px;
            }
            .widgets-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 60px; /* Space for bottom nav */
            }
            .site-header, .nav-menu-bar {
                display: none;
            }
            .mobile-header {
                display: flex;
            }
            .mobile-nav-bottom {
                display: grid;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero {
                padding: 30px 0;
            }
            .hero-content h2 {
                font-size: 2.2rem;
            }
            .hero-features {
                grid-template-columns: repeat(2, 1fr);
            }
            .explore-appliances-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .comparisons-grid {
                grid-template-columns: 1fr;
            }
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .bank-offers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .btn-bank-all {
                grid-column: span 2;
            }
            .why-trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .trust-col:last-child {
                grid-column: span 2;
            }
            .newsletter-banner-content {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }
            .newsletter-left-wrap {
                flex-direction: column;
                gap: 12px;
                text-align: center;
                width: 100%;
            }
            .newsletter-form-wrap {
                width: 100%;
            }
            .newsletter-form {
                max-width: 100%;
            }
            .newsletter-right-wrap {
                display: none;
            }
            .footer-cols {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }
            .explore-appliances-grid {
                grid-template-columns: 1fr;
            }
            .why-trust-grid {
                grid-template-columns: 1fr;
            }
            .trust-col:last-child {
                grid-column: span 1;
            }
            .price-btn-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .alerts-form {
                flex-direction: column;
            }
        }

        /* ==========================================================================
           SINGLE POST / ARTICLE TEMPLATE STYLES
           ========================================================================== */
        .single-post-wrapper {
            background-color: #f8fafc;
            padding: 40px 0;
            min-height: 100vh;
        }

        .single-post-container {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            align-items: start;
        }

        .post-main-content {
            background-color: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 40px;
            box-shadow: var(--shadow);
        }

        /* Article Header & Meta */
        .entry-header {
            margin-bottom: 32px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 24px;
        }

        .entry-title {
            font-size: 2.5rem;
            color: var(--dark);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .entry-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .entry-meta a {
            color: var(--primary);
            font-weight: 600;
        }

        .entry-meta a:hover {
            color: var(--primary-hover);
        }

        .meta-separator {
            color: var(--border);
        }

        /* Article Body Content Typography */
        .entry-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-main);
        }

        .entry-content p {
            margin-bottom: 24px;
        }

        .entry-content h2 {
            font-size: 1.75rem;
            color: var(--dark);
            font-weight: 800;
            margin-top: 40px;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
            position: relative;
            padding-bottom: 8px;
        }

        .entry-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .entry-content h3 {
            font-size: 1.35rem;
            color: var(--dark);
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 12px;
        }

        .entry-content h4 {
            font-size: 1.15rem;
            color: var(--dark);
            font-weight: 700;
            margin-top: 24px;
            margin-bottom: 8px;
        }

        /* Structured Tables (e.g. Specifications) */
        .entry-content table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 32px 0;
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            font-size: 0.95rem;
        }

        .entry-content table th {
            background-color: var(--dark);
            color: white;
            font-weight: 700;
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .entry-content table td {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            border-right: 1px solid var(--border);
            color: var(--text-main);
            background-color: white;
        }

        .entry-content table td:last-child {
            border-right: none;
        }

        .entry-content table tr:last-child td {
            border-bottom: none;
        }

        .entry-content table tr:nth-child(even) td {
            background-color: var(--bg-light);
        }

        .entry-content table tr:hover td {
            background-color: rgba(242, 92, 5, 0.03);
        }

        /* Figures & Images */
        .entry-content figure {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            background-color: var(--bg-light);
            padding: 8px;
            box-shadow: var(--shadow);
        }

        .entry-content figure img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .entry-content figcaption {
            font-size: 0.8rem;
            color: var(--text-light);
            text-align: center;
            margin-top: 10px;
            font-style: italic;
            font-weight: 500;
        }

        /* Lists */
        .entry-content ul, .entry-content ol {
            margin-left: 24px;
            margin-bottom: 24px;
        }

        .entry-content li {
            margin-bottom: 10px;
            padding-left: 4px;
        }

        /* Links & Callouts */
        .entry-content a {
            color: #d30202;
            font-weight: 600;
            border-bottom: 1px dashed #d30202;
        }

        .entry-content a:hover {
            color: #b30202;
            border-bottom-style: solid;
        }

        /* POST SIDEBAR & WIDGETS */
        .post-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: 96px;
        }

        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 24px;
            box-shadow: var(--shadow);
        }

        .widget-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border);
        }

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

        /* Widget: Also See (Related Articles) */
        .related-post-card {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .related-post-card:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .related-thumb-wrap {
            width: 72px;
            height: 72px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--border);
            background-color: var(--bg-light);
        }

        .related-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-post-details {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .related-post-details h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.35;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-post-card:hover .related-post-details h5 {
            color: var(--primary);
        }

        .related-date {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Widget: Related Comparisons */
        .comparison-card-widget {
            display: flex;
            flex-direction: column;
            padding: 16px;
            background-color: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
            margin-bottom: 12px;
            transition: var(--transition);
        }

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

        .comparison-card-widget:hover {
            border-color: var(--primary);
            background-color: white;
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .comp-vs-text {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--dark);
            text-align: center;
        }

        .comp-vs-text span {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .comp-vs-text .vs-badge {
            flex: 0 0 auto;
            background-color: var(--primary);
            color: white;
            font-size: 9px;
            font-weight: 900;
            padding: 2px 6px;
            border-radius: 4px;
            transform: skewX(-10deg);
        }

        .comp-cta {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 4px;
            transition: var(--transition);
        }

        .comparison-card-widget:hover .comp-cta {
            color: var(--primary-hover);
            gap: 8px;
        }

        /* Widget: Related Searches */
        .tag-cloud-widget {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .search-tag-pill {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-main);
            background-color: var(--bg-light);
            padding: 6px 14px;
            border-radius: 30px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .search-tag-pill:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 10px rgba(242, 92, 5, 0.2);
            transform: translateY(-1px);
        }

        /* Widget: Trending */
        .trending-post-link {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 14px;
            transition: var(--transition);
        }

        .trending-post-link:last-child {
            margin-bottom: 0;
        }

        .trending-post-link .bullet-number {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.1rem;
            line-height: 1;
        }

        .trending-post-link h6 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .trending-post-link:hover h6 {
            color: var(--primary);
        }

        /* ==========================================================================
           SINGLE POST RESPONSIVE LAYOUT (Mobile focus - sidebar widgets after body)
           ========================================================================== */
        @media (max-width: 850px) {
            .single-post-wrapper {
                padding: 20px 0;
            }

            .single-post-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .post-main-content {
                padding: 24px 16px;
                border-radius: 12px;
            }

            .entry-title {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .entry-content {
                font-size: 1rem;
            }

            .entry-content table {
                margin: 20px 0;
                font-size: 0.85rem;
            }

            .entry-content table th, .entry-content table td {
                padding: 10px 12px;
            }

            .post-sidebar {
                position: static;
                order: 2;
                gap: 20px;
            }

            .sidebar-widget {
                padding: 20px 16px;
                border-radius: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .entry-title {
                font-size: 1.6rem;
            }
            .entry-meta {
                font-size: 0.8rem;
            }
        }

        /* ==========================================================================
           DEALSKING NEW STYLES: DISCLOSURES, BUY WIDGETS & SIDEBAR ENHANCEMENTS
           ========================================================================== */

        /* Affiliate Disclosures */
        .post-affiliate-disclosure {
            font-size: 0.525rem; /* Half of 1.05rem post body font */
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 24px;
            padding: 12px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            font-style: italic;
        }
        
        .post-affiliate-disclosure.bottom {
            margin-top: 32px;
            margin-bottom: 0;
            border-bottom: none;
            border-top: 1px solid var(--border);
        }
        
        .post-affiliate-disclosure a {
            color: #d30202 !important;
            font-weight: 700;
            border-bottom: 1px dashed #d30202 !important;
        }
        
        .post-affiliate-disclosure a:hover {
            color: #b30202 !important;
            border-bottom-style: solid !important;
        }

        /* Product Buy Widget (mockup matching) */
        .product-buy-widget {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 20px;
            margin: 28px 0;
            gap: 20px;
            box-shadow: var(--shadow);
        }
        
        .buy-widget-logo-wrap {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            width: 110px;
        }
        
        .buy-widget-logo-wrap svg {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .buy-widget-details {
            flex-grow: 1;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
        }
        
        .buy-widget-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
            width: 140px;
        }
        
        .buy-now-button {
            display: block;
            width: 100%;
            background-color: #d30202;
            color: white !important;
            text-align: center;
            padding: 10px 14px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.15rem;
            line-height: 1.2;
            border-bottom: none !important;
            transition: var(--transition);
        }
        
        .buy-now-button:hover {
            background-color: #b30202;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(211, 2, 2, 0.2);
        }
        
        .buy-now-mrp {
            font-size: 0.8rem;
            color: var(--text-light);
            text-decoration: line-through;
            margin-top: 6px;
            font-weight: 500;
        }

        /* Inline "Also See" Callout (mockup matching) */
        .inline-also-see {
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 14px 18px;
            margin: 28px 0;
            background-color: white;
        }
        
        .also-see-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }
        
        .also-see-icon svg {
            color: #d30202;
            fill: none;
            display: block;
        }
        
        .also-see-text {
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .also-see-label {
            font-weight: 700;
            color: var(--dark);
            margin-right: 8px;
        }
        
        .also-see-link {
            color: #d30202 !important;
            font-weight: 600;
            border-bottom: none !important;
            transition: var(--transition);
        }
        
        .also-see-link:hover {
            color: #b30202 !important;
            text-decoration: underline;
        }

        /* Sidebar Deal Card */
        .sidebar-deal-card {
            display: flex;
            flex-direction: column;
            padding: 14px;
            background-color: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 16px;
            transition: var(--transition);
        }
        
        .sidebar-deal-card:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-deal-card:hover {
            border-color: var(--primary);
            background-color: white;
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        
        .deal-card-top {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .deal-card-img {
            width: 64px;
            height: 64px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--border);
            background-color: white;
        }
        
        .deal-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .deal-card-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .deal-card-title {
            font-size: 0.85rem;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .deal-card-title a {
            color: var(--dark);
        }
        
        .deal-card-title a:hover {
            color: var(--primary);
        }
        
        .deal-card-price-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .deal-card-price {
            font-size: 0.95rem;
            font-weight: 800;
            color: #d30202;
        }
        
        .deal-card-mrp {
            font-size: 0.75rem;
            color: var(--text-light);
            text-decoration: line-through;
        }
        
        .deal-card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px dashed var(--border);
            padding-top: 10px;
        }
        
        .deal-card-badge {
            background-color: var(--primary);
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
        }
        
        .deal-card-buy-btn {
            background-color: #d30202;
            color: white !important;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 4px;
            border-bottom: none !important;
            text-transform: uppercase;
            transition: var(--transition);
        }
        
        .deal-card-buy-btn:hover {
            background-color: #b30202;
        }

        /* Mobile Collapsing for Buy Widget */
        @media (max-width: 600px) {
            .product-buy-widget {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
                gap: 16px;
            }
            
            .buy-widget-logo-wrap {
                justify-content: center;
            }
            
            .buy-widget-action {
                width: 100%;
                max-width: 200px;
            }
        }

        /* Featured Image Styling */
        .post-featured-image-wrapper {
            margin-bottom: 30px;
            width: 100%;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }
        
        .post-featured-image {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
            display: block;
        }

        /* ==========================================================================
           ASTRA NARROW CONTAINER OVERRIDES & DOUBLE BOX FIX
           ========================================================================== */
        /* Force Astra containers to be wide (1400px) on singular posts and pages */
        .single-post .ast-container, 
        .page .ast-container,
        .ast-narrow-container .ast-container,
        .single-post-container.container {
            max-width: 1400px !important;
            width: 100% !important;
            padding: 0 20px !important;
            margin: 0 auto !important;
        }

        /* Prevent Astra from adding default padding or backgrounds to content wrapper */
        .single-post #content.site-content,
        .page #content.site-content,
        .single-post .ast-separate-container #primary,
        .page .ast-separate-container #primary,
        .single-post .ast-separate-container #content,
        .page .ast-separate-container #content {
            padding: 0 !important;
            margin: 0 !important;
            background: transparent !important;
            background-color: #f8fafc !important;
        }

        /* Strip Astra's nested inner box styling to prevent the double-box layout */
        .single-post .ast-article-single,
        .single-post article.ast-article-single,
        .single-post .ast-article-post,
        .single-post article.ast-article-post,
        .page .ast-article-single,
        .page article.ast-article-single,
        .page .ast-article-post,
        .page article.ast-article-post,
        .ast-separate-container .ast-article-single,
        .ast-separate-container article.ast-article-single,
        .ast-separate-container .ast-article-post,
        .ast-separate-container article.ast-article-post,
        .post-main-content article,
        .post-main-content .ast-article-single,
        .post-main-content .ast-article-post {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        /* Make sure the post wrapper uses full width */
        .single-post-wrapper {
            width: 100% !important;
            background-color: #f8fafc;
            padding: 40px 0;
        }
