/*
Theme Name: Eat Chonks Theme
Theme URI: https://example.com/
Author: Eat Chonks
Author URI: https://example.com/
Description: Tema WordPress mirip Eat Chonks ID — starter theme untuk toko kue kecil.
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: papa-cookies
*/

:root {
    /* Colors - Dough Lab Inspired */
    --bg-body: #f9f7f2;
    /* Light Beige */
    --text-main: #1a1a1a;
    /* Almost Black */
    --text-muted: #666666;
    --primary: #1a1a1a;
    /* Dark for primary actions */
    --accent: #c23b22;
    /* Deep Red/Brown for highlights */
    --border-color: #e5e5e5;
    --white: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;

    /* Typography */
    --font-main: 'DM Sans', 'Inter', sans-serif;
    --font-heading: 'DM Sans', 'Inter', sans-serif;
}

/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 0;
    /* Square/Sharp corners */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header */
.header {
    background: var(--bg-body);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Left Nav - Logo - Right Icons */
    align-items: center;
}

.nav-left {
    justify-self: start;
}

.nav-right {
    justify-self: end;
    display: flex;
    gap: 20px;
    align-items: center;
}

.logo {
    text-align: center;
}

.logo a {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

.nav-menu a {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.icon-link {
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    max-width: 600px;
    /* border: 1px solid var(--primary); */
    /* Optional border */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    text-align: center;
    transition: all 0.3s ease;
}

.product-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    background: #f0ece6;
    /* Slightly darker beige for image bg */
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Brand Story */
.brand-story {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Footer Modernization */
.footer {
    background: var(--footer-bg);
    color: #e5e5e5;
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    max-width: 600px;
    /* border: 1px solid var(--primary); */
    /* Optional border */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    text-align: center;
    transition: all 0.3s ease;
}

.product-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    background: #f0ece6;
    /* Slightly darker beige for image bg */
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Brand Story */
.brand-story {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Footer Modernization */
.footer {
    background: var(--footer-bg);
    color: #e5e5e5;
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #999;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    color: #25D366;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: opacity 0.3s;
}

.btn-whatsapp:hover {
    opacity: 0.8;
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.8rem;
}

/* Accessibility Utility */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Scrolling Marquee */
.marquee-container {
    background: var(--primary);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 40px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Instagram Feed */
.instagram-feed {
    position: relative;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.insta-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay .icon {
    font-size: 2rem;
    color: var(--white);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-follow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    /* Allow clicks to pass through to grid if needed, but button needs pointer-events: auto */
}

.insta-follow .btn-white {
    pointer-events: auto;
    box-shadow: var(--shadow-lg);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
.mobile-menu-container {
    position: fixed;
    top: 0;
    left: -300px;
    /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: var(--bg-body);
    z-index: 2000;
    padding: 40px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu-container.active {
    left: 0;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav-menu {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-menu a {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        order: -1;
        /* Image first on mobile */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Better Grid for Products on Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        /* Single column on small screens */
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marquee-content span {
        font-size: 1rem;
        margin-right: 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        /* Full width buttons on mobile */
    }
}
/* B2B Section Redesign - Enhanced Visual Appeal */
.b2b-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.b2b-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(194, 59, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(194, 59, 34, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.b2b-section .section-header {
    position: relative;
    z-index: 1;
}

.b2b-section .section-header h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.b2b-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.b2b-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.b2b-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 59, 34, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.b2b-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 59, 34, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(194, 59, 34, 0.2);
}

.b2b-card:hover::before {
    opacity: 1;
}

.b2b-icon {
    font-size: 4rem;
    display: inline-block;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(194, 59, 34, 0.2) 0%, rgba(194, 59, 34, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.b2b-card:hover .b2b-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(194, 59, 34, 0.3) 0%, rgba(194, 59, 34, 0.1) 100%);
}

.b2b-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.b2b-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.b2b-section .btn-white {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--primary);
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.b2b-section .btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 59, 34, 0.3), transparent);
    transition: left 0.5s ease;
}

.b2b-section .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.b2b-section .btn-white:hover::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .b2b-section {
        padding: 60px 0;
    }
    
    .b2b-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .b2b-card {
        padding: 40px 25px;
    }
    
    .b2b-icon {
        font-size: 3rem;
        padding: 20px;
    }
}

/* Blog List Enhanced Design */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #f0ece6;
}

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

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

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

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .entry-header {
    margin-bottom: 15px;
}

.blog-card .entry-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card .entry-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-card .entry-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-card .entry-meta .posted-on {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card .entry-meta .posted-on::before {
    content: '📅';
    font-size: 0.9rem;
}

.blog-card .entry-summary {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .entry-footer {
    margin-top: auto;
}

.blog-card .read-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c23b22 0%, #e94b3a 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 59, 34, 0.3);
}

.blog-card .read-more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 59, 34, 0.4);
    background: linear-gradient(135deg, #e94b3a 0%, #c23b22 100%);
}

/* Page Header Styling */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 0 20px;
}

.page-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary);
    letter-spacing: 1px;
}

.archive-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 80px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .page-header {
        padding: 40px 0 20px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card .entry-title {
        font-size: 1.3rem;
    }
    
    .pagination-wrapper {
        margin-top: 60px;
    }
}
