        :root {
            --color-primary: #00a8a8; /* Teal header */
            --color-text-blue: #0073e6; /* Title blue - approximated */
            --color-cta-orange: #f7a61e; /* CTA Orange */
            --color-cta-orange-hover: #d88e15;
            --color-text-dark: #333333;
            --color-text-grey: #666666;
            --color-star: #fbc02d;
            --color-bg-light: #f9f9f9;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            background-color: #fff;
            color: var(--color-text-dark);
        }

        /* Header */
        .site-header {
            background-color: var(--color-primary);
            color: white;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 50px;
            box-sizing: border-box;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .site-logo {
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            height: 100%;
        }
        .site-logo img {
            max-height: 40px;
            width: auto;
            object-fit: contain;
        }
        .custom-logo-link {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .custom-logo-link img {
            max-height: 40px;
            width: auto;
            object-fit: contain;
        }
        .site-menu-icon {
            display: flex;
            cursor: pointer;
            width: 30px;
            height: 24px;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        .site-menu-icon span {
            display: block;
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .site-menu-icon.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .site-menu-icon.active span:nth-child(2) {
            opacity: 0;
        }
        .site-menu-icon.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Menu - Now works on desktop too */
        .mobile-menu {
            display: block;
            position: fixed;
            top: 50px;
            left: 0;
            width: 100%;
            max-width: 320px;
            height: calc(100vh - 50px);
            background: white;
            box-shadow: 2px 0 20px rgba(0,0,0,0.15);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 999;
            overflow-y: auto;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        .mobile-menu-overlay {
            display: block;
            position: fixed;
            top: 50px;
            left: 0;
            width: 100%;
            height: calc(100vh - 50px);
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .mobile-menu li {
            border-bottom: 1px solid #f0f0f0;
        }
        .mobile-menu a {
            display: block;
            padding: 15px 20px;
            color: var(--color-text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s ease;
        }
        .mobile-menu a:hover {
            background: #f5f5f5;
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                max-width: 280px;
            }
        }

        /* Search Bar on Home - Professional Redesign */
        .hero-search {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 70px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-search::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            opacity: 1;
        }
        .hero-search-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-search h1 {
            margin-top: 0;
            margin-bottom: 12px;
            font-size: 44px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
        }
        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 35px;
            color: rgba(255,255,255,0.9);
            font-weight: 400;
        }
        .search-form-wrapper {
            max-width: 750px;
            margin: 0 auto 35px;
        }
        .search-form {
            display: flex;
            gap: 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .search-input-wrapper {
            flex-grow: 1;
            display: flex;
            align-items: center;
            padding: 0 24px;
            background: white;
        }
        .search-icon {
            font-size: 20px;
            margin-right: 14px;
            color: #6b7280;
        }
        .search-form input[type="text"] {
            flex-grow: 1;
            padding: 20px 0;
            border: none;
            font-size: 16px;
            outline: none;
            color: #1f2937;
            background: transparent;
        }
        .search-form input[type="text"]::placeholder {
            color: #9ca3af;
        }
        .search-button {
            padding: 20px 40px;
            background: #2563eb;
            border: none;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .search-button:hover {
            background: #1d4ed8;
            transform: none;
        }
        .search-button:active {
            transform: scale(0.98);
        }
        .search-arrow {
            font-size: 18px;
        }
        
        /* Country Selector */
        .country-selector-wrapper {
            margin-top: 45px;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .country-selector-label {
            font-size: 15px;
            margin-bottom: 18px;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .country-flags-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .country-flag-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .country-flag-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            text-decoration: none;
            color: white;
            border-color: rgba(255,255,255,0.3);
        }
        .country-flag {
            font-size: 20px;
        }
        .country-name {
            white-space: nowrap;
        }

        /* Main Content Wrapper */
        .main-content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
        }
        
        /* Content Sections */
        .content-section {
            margin-bottom: 80px;
        }
        .section-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 3px solid #f0f0f0;
        }
        .section-icon {
            font-size: 48px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            border-radius: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
        }
        .deals-section .section-icon {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
        }
        .section-title {
            font-size: 40px;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: var(--color-text-dark);
            letter-spacing: -0.5px;
        }
        .section-subtitle {
            font-size: 18px;
            color: var(--color-text-grey);
            margin: 0;
            line-height: 1.6;
        }
        
        /* Common Grid Layout */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 30px;
        }
        
        @media (min-width: 1200px) {
            .content-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .post-card {
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .post-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            border-color: #ddd;
            text-decoration: none;
            color: inherit;
        }
        .post-card-image-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: #f5f5f5;
        }
        .post-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: auto;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translateZ(0);
            will-change: transform;
        }
        .post-card:hover .post-card-image {
            transform: scale(1.1);
        }
        .post-card-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .placeholder-icon {
            font-size: 48px;
            opacity: 0.5;
        }
        .post-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .post-card:hover .post-card-overlay {
            opacity: 1;
        }
        .post-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .post-card-category {
            font-size: 12px;
            font-weight: 600;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .post-card-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--color-text-dark);
            line-height: 1.3;
        }
        .post-card-excerpt {
            font-size: 14px;
            color: var(--color-text-grey);
            margin-bottom: 15px;
            flex-grow: 1;
            line-height: 1.6;
        }
        .post-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        .post-card-date {
            font-size: 13px;
            color: #888;
        }
        .post-card-arrow {
            font-size: 18px;
            color: var(--color-primary);
            transition: transform 0.3s ease;
        }
        .post-card:hover .post-card-arrow {
            transform: translateX(5px);
        }
        .deal-cta {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-cta-orange);
        }
        
        /* Deal Card Specific Styles */
        .deal-card {
            border-color: #ffe8cc;
        }
        .deal-card:hover {
            border-color: var(--color-cta-orange);
        }
        
        /* Tips Grid - New Design with Circular Thumbnails */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .tip-card {
            background: white;
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .tip-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-4px);
            border-color: #ddd;
        }
        .tip-card-link {
            display: flex;
            gap: 20px;
            padding: 24px;
            text-decoration: none;
            color: inherit;
        }
        .tip-thumbnail {
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #f0f0f0;
        }
        .tip-thumbnail-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .tip-thumbnail-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .tip-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .tip-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 14px 0;
            color: var(--color-text-dark);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .tip-excerpt {
            font-size: 15px;
            line-height: 1.6;
            color: var(--color-text-grey);
            margin: 0 0 16px 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .tip-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        .tip-tag {
            display: inline-block;
            padding: 5px 14px;
            background: #f5f5f5;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
            color: var(--color-text-dark);
            transition: all 0.2s ease;
            border: 1px solid #e8e8e8;
        }
        .tip-card:hover .tip-tag {
            background: #e8e8e8;
            border-color: #ddd;
        }
        .deal-badge-top {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--color-text-dark);
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 2;
        }
        .deal-flag {
            font-size: 16px;
        }

        /* Products Section */
        .products-section .section-icon {
            background: linear-gradient(135deg, #f7931e 0%, #f15a24 100%);
            box-shadow: 0 4px 15px rgba(247, 147, 30, 0.25);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .product-card-home {
            background: white;
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .product-card-home:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            border-color: #f7931e;
            text-decoration: none;
        }
        .product-card-image {
            position: relative;
            width: 100%;
            height: 220px;
            background: #fafafa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .product-card-image img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .product-card-home:hover .product-card-image img {
            transform: scale(1.05);
        }
        .product-placeholder {
            font-size: 60px;
            opacity: 0.3;
        }
        .product-discount-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #cc0c39;
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
        }
        .product-prime-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #232f3e;
            color: #00a8e1;
            padding: 4px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: bold;
            font-style: italic;
        }
        .product-card-info {
            padding: 18px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .product-brand-tag {
            font-size: 11px;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .product-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #0066c0;
            margin: 0 0 12px 0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-card-home:hover .product-card-title {
            color: #c7511f;
        }
        .product-card-pricing {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 15px;
        }
        .product-current-price {
            font-size: 22px;
            font-weight: 700;
            color: #0f1111;
        }
        .product-old-price {
            font-size: 14px;
            color: #888;
            text-decoration: line-through;
        }
        .product-card-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
            font-size: 14px;
            font-weight: 600;
            color: #f7931e;
        }
        .product-arrow {
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        .product-card-home:hover .product-arrow {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .product-card-image {
                height: 160px;
            }
            .product-card-info {
                padding: 14px;
            }
            .product-card-title {
                font-size: 14px;
            }
            .product-current-price {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        .no-content {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            color: var(--color-text-grey);
            font-size: 16px;
        }
        
        /* Pagination Styles */
        .pagination-wrapper {
            margin-top: 50px;
        }
        .pagination-wrapper .page-numbers {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pagination-wrapper .page-numbers li {
            margin: 0;
        }
        .pagination-wrapper .page-numbers a,
        .pagination-wrapper .page-numbers span {
            display: inline-block;
            padding: 12px 18px;
            background: white;
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            color: var(--color-text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .pagination-wrapper .page-numbers a:hover {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
            text-decoration: none;
        }
        .pagination-wrapper .page-numbers .current {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }
        
        /* Footer */
        .site-footer {
            background-color: var(--color-primary);
            color: white;
            padding: 30px 20px;
            text-align: center;
            font-size: 14px;
            margin-top: auto;
        }
        .footer-logo {
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .footer-logo .custom-logo-link {
            display: inline-block;
        }
        .footer-logo .custom-logo-link img {
            max-height: 50px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
        .footer-links {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            display: inline-block;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .copyright {
            opacity: 0.8;
            font-size: 12px;
            line-height: 1.6;
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .site-logo,
            .custom-logo-link {
                font-size: 18px;
            }
            .site-logo img,
            .custom-logo-link img {
                max-height: 35px;
            }
            .footer-logo .custom-logo-link img {
                max-height: 40px;
            }
            .hero-search {
                padding: 50px 15px;
            }
            .hero-search h1 {
                font-size: 32px;
            }
            .hero-subtitle {
                font-size: 16px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input-wrapper {
                padding: 16px 20px;
            }
            .search-form input[type="text"] {
                padding: 16px 0;
            }
            .search-button {
                padding: 16px;
                border-radius: 0 0 12px 12px;
                justify-content: center;
                width: 100%;
            }
            .mobile-menu {
                display: block;
            }
            .mobile-menu-overlay {
                display: block;
            }
            .country-flags-grid {
                gap: 8px;
            }
            .country-flag-item {
                padding: 8px 12px;
                font-size: 13px;
            }
            .country-name {
                display: none;
            }
            .main-content-wrapper {
                padding: 30px 15px;
            }
            .section-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .section-icon {
                width: 50px;
                height: 50px;
                font-size: 32px;
            }
            .section-title {
                font-size: 24px;
            }
            .section-subtitle {
                font-size: 14px;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .post-card-image-wrapper {
                height: 200px;
            }
            .post-card-content {
                padding: 18px;
            }
            .post-card-title {
                font-size: 18px;
            }
            .tips-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 100%;
            }
            .tip-card-link {
                flex-direction: row;
                gap: 15px;
                padding: 18px;
            }
            .tip-thumbnail {
                width: 70px;
                height: 70px;
                flex-shrink: 0;
            }
            .tip-thumbnail-placeholder {
                font-size: 28px;
            }
            .tip-title {
                font-size: 18px;
                -webkit-line-clamp: 3;
                margin-bottom: 12px;
            }
            .tip-excerpt {
                font-size: 14px;
                -webkit-line-clamp: 2;
            }
            .tip-tags {
                gap: 6px;
            }
            .tip-tag {
                font-size: 11px;
                padding: 4px 10px;
            }
            .footer-links a {
                display: block;
                margin: 10px 0;
            }
        }
        
        @media (max-width: 480px) {
            .hero-search h1 {
                font-size: 24px;
            }
            .section-title {
                font-size: 20px;
            }
            .country-flag-item {
                padding: 6px 10px;
            }
        }
