/* 
Theme Name: Coupon Genie
Theme URI: https://coupongenie.in/
Author: Coupon Genie
Author URI: https://coupongenie.in/
Description: Coupon Genie is your one-stop destination for the latest promo codes, discount offers, and money-saving deals from top brands.
Version: 1.0
Text Domain: coupongenie
*/
/* Variables matching the design exactly */
:root {
    --primary-blue: #235cae;
    --primary-blue-hover: #1b498a;
    --text-dark: #121e33;
    --text-gray: #4b586e;
    --bg-color: #f2f7fc;
    --card-bg: #ffffff;
    --footer-bg: #27406a;
    --footer-bottom-bg: #1f355a;
    --footer-text: #a8b9d3;
    --footer-title: #ffffff;
    --btn-blue: #2c65cc;
    --btn-blue-hover: #1e4ea5;

    --border-light: #e0e8f0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 24px rgba(35, 92, 174, 0.15);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-gray);
    line-height: 1.5;
    /* subtle background texture/gradient simulating image */
    background-image: linear-gradient(135deg, #f8fbff 0%, #eef4f9 100%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure no horizontal scroll on body */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--btn-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--btn-blue-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-offer {
    background-color: var(--btn-blue);
    color: white;
    width: 60%;
    margin-top: auto;
    border-radius: var(--radius-md);
    padding: 12px 0;
    font-weight: 600;
}

.btn-offer:hover {
    background-color: var(--btn-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px 40px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(35, 92, 174, 0.1), rgba(76, 176, 228, 0.2));
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(35, 92, 174, 0.1);
}

.logo-img-placeholder i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #4CB0E4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(35, 92, 174, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text h1 a {
    color: var(--primary-blue);
    text-decoration: none;
    border: none;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.header-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--primary-blue);
}

.header-nav i {
    font-size: 1.2rem;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f8fb;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    width: 280px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.search-bar button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 2rem;
    padding: 4px;
}

/* Main Content */
.main-content {
    padding: 30px 20px 60px;
}

.main-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.deal-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    overflow: hidden;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(35, 92, 174, 0.1);
}

.deal-brand {
    margin-bottom: 16px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-amazon {
    color: #000;
}

.brand-flipkart {
    color: #2874f0;
}

.brand-zomato {
    color: #cb202d;
    font-style: italic;
}

.brand-myntra {
    color: #ff3e6c;
}

.brand-ajio {
    color: #2c4152;
}

.brand-swiggy {
    color: #fc8019;
}

.deal-info {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.deal-info h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.deal-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.deal-image {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 110px;
    height: 90px;
    z-index: 1;
    opacity: 0.8;
}

.img-box {
    width: 100%;
    height: 100%;
    border-radius: 20px 0 0 0;
}

.box-blue {
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

.box-cyan {
    background: linear-gradient(135deg, #e0f7fa, #80deea);
}

.box-orange {
    background: linear-gradient(135deg, #fff3e0, #ffcc80);
}

.box-pink {
    background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.box-blue-dark {
    background: linear-gradient(135deg, #bbdefb, #64b5f6);
}

.box-orange-light {
    background: linear-gradient(135deg, #fff8e1, #ffe082);
}

/* Blog Card Layout */
.blog-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(35, 92, 174, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 180px;
}

.blog-card-image .img-box {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-size: cover !important;
    background-position: center !important;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btn-blue);
    color: white;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 12px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--btn-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.load-more-container {
    text-align: center;
}

/* Sidebar */
.sidebar-box {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f8fb;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item:hover .sidebar-item-info h4 {
    color: var(--primary-blue);
}

.sidebar-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.logo-amazon {
    background: #232f3e;
}

.logo-flipkart {
    background: #fce205;
    color: #2874f0 !important;
}

.logo-swiggy {
    background: #fc8019;
}

.logo-myntra {
    background: #ff3e6c;
}

.sidebar-item-info h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.sidebar-item-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.3;
}

.about-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bottom About Section */
.bottom-about-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px 40px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.about-content {
    flex: 1;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content strong {
    color: var(--text-dark);
}

.about-content ul,
.about-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 12px;
}

/* Format WordPress Images in About Section */
.about-content figure.wp-block-image {
    margin: 30px 0;
    max-width: 100%;
}

.about-content figure.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: block;
}

/* Format WordPress Separator in About Section */
.about-content hr.wp-block-separator {
    border: 0;
    height: 1px;
    background: var(--border-light);
    margin: 40px 0;
}

.about-illustration {
    display: none;
    /* Hidden to allow the long-form text to take full width */
}

.box-treasure {
    position: absolute;
    right: 20px;
    bottom: -20px;
    width: 250px;
    height: 200px;
    background: linear-gradient(45deg, #ffd54f, #ffca28);
    border-radius: 20px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 60px;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-title {
    color: var(--footer-title);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-socials-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
}

.social-icons a:hover {
    color: #4CB0E4;
}

.footer-bottom {
    background-color: var(--footer-bottom-bg);
    text-align: center;
    padding: 24px;
    font-size: 0.95rem;
}

/* Single Post Layout */
.single-post-article {
    width: 100% !important;
    max-width: 100% !important;
    background: white;
    padding: 30px 24px;
    /* Reduced L/R from 40px to 24px for a wider text column */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    overflow: hidden;
    box-sizing: border-box;
}

.single-post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.single-post-meta {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Single Post Content Styling overhaul for premium layout */
.single-post-content {
    line-height: 1.9;
    /* Improved readability */
    color: #334155;
    /* Slightly softer than pure black, good for long reading */
    font-size: 1.1rem;
    /* Slightly larger base font for articles */
    font-family: 'Outfit', sans-serif;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    color: #0f172a;
    /* High contrast headings */
    font-weight: 700;
    margin-top: 2.5em;
    /* Lots of breathing room above headings */
    margin-bottom: 1em;
    line-height: 1.3;
}

.single-post-content h1 {
    font-size: 2.25rem;
}

.single-post-content h2 {
    font-size: 1.75rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.25rem;
}

.single-post-content p {
    margin-bottom: 1.75em;
    /* Better spacing between paragraphs */
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.75em;
    padding-left: 1.5em;
    color: #334155;
}

.single-post-content li {
    margin-bottom: 0.5em;
}

.single-post-content li::marker {
    color: var(--primary-blue);
    font-weight: bold;
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
    margin: 2em 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #475569;
    background: #f8fafc;
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.single-post-content a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid rgba(35, 92, 174, 0.2);
    transition: all 0.2s ease;
}

.single-post-content a:hover {
    color: var(--btn-blue-hover);
    border-bottom-color: var(--btn-blue-hover);
}

.single-post-content img,
.single-post-content iframe,
.single-post-content video {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    /* Rounded corners for images */
    margin: 2em 0;
    /* Huge spacing around images */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    /* Premium soft shadow */
    display: block;
    /* Ensure no inline text clipping */
}

/* Hard stops against width-breaking elements in WordPress content */
.single-post-content pre,
.single-post-content code {
    max-width: 100%;
    overflow-x: auto;
    word-break: normal;
    word-wrap: normal;
}

/* Responsive Tables */
.single-post-content table,
.single-post-content .wp-block-table {
    display: block;
    /* Forces table to act as a block element for scrolling */
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    border-collapse: collapse;
    margin-bottom: 2em;
    font-size: 0.95rem;
    /* Slightly smaller text for data density */
    white-space: nowrap;
    /* Prevent columns from squeezing too thin */
}

.single-post-content table th,
.single-post-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    text-align: left;
}

.single-post-content table th {
    background-color: var(--bg-color);
    font-weight: 600;
    color: var(--text-dark);
}

.single-post-content table tr:nth-child(even) {
    background-color: #f8fafc;
}

.single-post-content>* {
    max-width: 100%;
}

/* --- WordPress Comments Modern Premium Styling --- */

.single-post-comments {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.comments-title,
.comment-reply-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 24px;
}

.comment-reply-title small a {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: normal;
    margin-left: 10px;
}

/* Comment Form Inputs */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background-color: #f8fbff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(35, 92, 174, 0.1);
}

/* Checkbox alignment */
.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comment-form-cookies-consent input {
    margin-top: 4px;
}

/* Submit Button Override */
.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--btn-blue);
    color: white;
    width: auto;
    align-self: flex-start;
}

.comment-form .submit:hover {
    background-color: var(--btn-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Comment List Display */
.comment-list {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: 30px;
}

.comment-list .children {
    margin-top: 20px;
    margin-left: 50px;
    /* Indent replies */
    padding-left: 20px;
    border-left: 2px solid var(--border-light);
    list-style: none;
}

.comment-body {
    background: #f8fbff;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.comment-meta img.avatar {
    border-radius: 50%;
    margin: 0;
    box-shadow: none;
}

.comment-author {
    font-weight: 700;
    color: var(--text-dark);
}

.comment-metadata {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.comment-content p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-gray);
}

.reply a {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-blue);
    margin-top: 10px;
    border-bottom: none;
}

.reply a:hover {
    color: var(--btn-blue-hover);
}

/* --- End Comments Styling --- */

/* Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-socials-col {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {

    .header-nav {
        display: none;
        position: absolute;
        top: 80px;
        /* Header height */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        border-top: 1px solid var(--border-light);
    }

    .header-nav.active {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }

    .header-nav a {
        font-size: 1.1rem;
        width: 100%;
        padding: 5px 0;
    }

    .header-right .search-bar {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        /* Show 3 lines strictly on mobile */
    }

    .header-container {
        justify-content: space-between;
    }

    .logo-text h1 {
        font-size: 1.25rem;
    }

    .logo-text p {
        display: none;
        /* Hide URL text on very small screens to prevent clipping */
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .bottom-about-section {
        flex-direction: column;
        padding: 24px;
    }

    .about-illustration {
        display: none;
        /* Prevent horizontal overflow from absolute positioned illustration */
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-socials-col {
        justify-content: center;
    }

    /* Single Post Tweaks for Mobile */
    .single-post-article {
        padding: 20px 15px;
        /* Reduced L/R from 20px to 15px for wider mobile reading */
    }

    .single-post-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
    }

    .single-post-thumbnail {
        margin-bottom: 20px;
    }
}