 :root {
            --black: #000;
            --white: #fff;
            --gold: #D4AF37;
            --light-gray: #f5f5f5;
            --dark-gray: #222;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            color: var(--black);
            background: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background: var(--white);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 40px;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 25px;
        }

        nav a {
            text-decoration: none;
            color: var(--black);
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 5px 0;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        nav a:hover:after {
            transform: scaleX(1);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 150px 0;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--black);
            color: var(--white);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--black);
        }

        .btn:hover {
            background: transparent;
            color: var(--black);
        }

        .btn-outline {
            background: transparent;
            color: var(--black);
            border: 2px solid var(--black);
        }

        .btn-outline:hover {
            background: var(--black);
            color: var(--white);
        }

        /* Product Grid */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin: 60px 0 40px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .product-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            margin: 0 0 10px;
            font-size: 1.2rem;
        }

        .product-price {
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .buy-now {
            background: var(--gold);
            color: var(--black);
            display: block;
            width: 100%;
        }

        .buy-now:hover {
            background: #c9a227;
            color: var(--black);
        }

        .view-all {
            text-align: center;
            margin: 50px 0;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .blog-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .post-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .post-image img {
            transform: scale(1.05);
        }

        .category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gold);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .post-content {
            padding: 20px;
        }

        .blog-card h3 {
            margin: 0 0 10px 0;
            font-size: 1.3rem;
        }

        .excerpt {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .post-meta {
            font-size: 0.9rem;
            color: #777;
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 15px;
        }

        /* Contact CTA */
        .contact-cta {
            background: var(--light-gray);
            padding: 80px 0;
            text-align: center;
        }

        .contact-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-links a {
            color: var(--white);
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--gold);
            transform: translateY(-3px);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            font-family: inherit;
        }

        .newsletter-form button {
            background: var(--gold);
            color: var(--black);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #c9a227;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
        
        

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-previous, .nav-next {
    width: 48%;
    padding: 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-previous:hover, .nav-next:hover {
    background: #f5f5f5;
}

.nav-previous span, .nav-next span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.nav-previous h3, .nav-next h3 {
    font-size: 1.1rem;
    margin: 0;
}

.nav-next {
    text-align: right;
}

        @media (max-width: 576px) {
            .hero {
                padding: 80px 0;
            }
            
            .products-grid, .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        
        
        /* ===== BLOG STYLES ===== */
/* Blog Listing Page */
.blog-listing {
    padding: 4rem 0;
    background: var(--light-gray);
}

.blog-post {
    padding-top: 100px; /* Creates space below the sticky header */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .post-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content {
    padding: 1.5rem;
}

.blog-card h2 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--dark-gray);
}


.post-header {
    position: static; /* Ensures it scrolls normally */
    margin-top: 0; /* Remove any default margins */
}

.excerpt {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.post-meta {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.pagination .active {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

/* ===== SINGLE POST PAGE ===== */
.blog-post {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 1rem 0;
    color: var(--dark-gray);
}

.post-featured-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.post-footer {
    margin: 3rem 0;
    padding: 2rem 0;
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share a {
    color: white;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-share a:hover {
    background: #f5f5f5;
}

/* Related Posts */
.related-posts {
    padding: 3rem 0;
    background: var(--light-gray);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.related-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post:hover .related-image img {
    transform: scale(1.05);
}

.related-post h3 {
    padding: 1.2rem;
    margin: 0;
    font-size: 1.2rem;
}

/* Comments Section */
.comments-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.comments-list {
    margin-bottom: 3rem;
}

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.comment-header strong {
    color: var(--dark-gray);
}

.comment-header time {
    color: #666;
}

.comment-body {
    line-height: 1.6;
    color: #444;
}

.comment-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.comment-form .form-group {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.comment-success {
    color: #2e7d32;
    background: #e8f5e9;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-grid, .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post {
        padding: 2rem 0;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}