.product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.product-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
}

.product-price {
    color: #d4527c;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Categories */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: #fefefe;
}

/* Header */
header {
    background: #ffffff;
    color: #2d2d2d;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
}

.header {
    top: 0;
    position: sticky;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 50px;
}

.logo img {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #d4527c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #b8446a;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(212,82,124,0.03), rgba(212,82,124,0.05)), 
                linear-gradient(135deg, #fdfcfc, #ffffff);
    color: #2d2d2d;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4527c;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-weight: 300;
}

/* Main Content Layout */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

/* Content Area */
.content-area {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Featured Article */
.featured-article {
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    display: flex;
    align-items: end;
    color: #2d2d2d;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.featured-content {
    padding: 2rem;
    background: linear-gradient(transparent, rgba(255,255,255,0.95));
    width: 100%;
    color: #2d2d2d;
}

.featured-article h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #d4527c;
}

.featured-article .meta {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    color: #666;
}

/* Article Grid */
.articles-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(212,82,124,0.12);
}

.article-image {
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa, #ffffff);
}

.article-image img {
    width: 100%;
    object-fit: cover;
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-article-content {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.article-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.home-article-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    line-height: 1.2;
    font-weight: 700;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #d4527c, #e57fa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #2d2d2d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.home-article-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #fdf5f8;
    color: #d4527c;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #d4527c;
    color: white;
}

/* Featured Image */
.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    object-fit: contain;
    max-height: 800px;
}

/* Article Body */
.article-body {
    padding: 0 2rem 2rem;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #d4527c;
    position: relative;
    padding-left: 1rem;
    font-weight: 600;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #d4527c, #e57fa0);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #2d2d2d;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-body blockquote {
    background: #fdfcfd;
    border-left: 4px solid #d4527c;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Inline Ad Spaces */
.inline-ad {
    background: #fafafa;
    border: 2px dashed #e8e8e8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.inline-ad:hover {
    background: #f5f5f5;
}

/* Affiliate Product Box */
.affiliate-box {
    background: #ffffff;
    border: 2px solid #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.affiliate-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, #d4527c, #e57fa0, #f0a8bf);
}

.affiliate-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.affiliate-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4527c, #e57fa0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.affiliate-title {
    font-size: 1.2rem;
    color: #2d2d2d;
    font-weight: 600;
}

.affiliate-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.affiliate-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.affiliate-price {
    font-size: 1.3rem;
    color: #d4527c;
    font-weight: bold;
}

.affiliate-btn {
    background: linear-gradient(135deg, #d4527c, #e57fa0);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.affiliate-btn:hover {
    background: linear-gradient(135deg, #e57fa0, #f0a8bf);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,82,124,0.3);
}

/* Table of Contents */
.table-of-contents {
    background: #fdfcfd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #d4527c;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.toc-list {
    list-style: none;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: #d4527c;
}

/* Related Posts */
.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
    cursor: pointer;
}

.related-post:hover {
    background: #fdfcfd;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.related-post:last-child {
    border-bottom: none;
}

.related-thumbnail {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4527c;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2d2d2d;
    line-height: 1.3;
}

.related-date {
    font-size: 0.8rem;
    color: #999;
}

/* Article Navigation */
.article-navigation {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.nav-link:hover {
    background: #fdfcfd;
    border-color: #e8e8e8;
}

.nav-direction {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    line-height: 1.3;
}

/* Author Bio */
.author-bio {
    background: #fdfcfd;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4527c, #e57fa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.author-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.read-more {
    color: #d4527c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b8446a;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f5f5f5;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    border-bottom: 2px solid #d4527c;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

/* Ad Spaces */
.ad-space {
    background: #fafafa;
    border: 2px dashed #e8e8e8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ad-space:hover {
    background: #f5f5f5;
}

.ad-space.banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.ad-space.square {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular Posts */
.popular-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

.popular-post:hover {
    background: #fdfcfd;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-thumbnail {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4527c;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popular-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2d2d2d;
    line-height: 1.3;
}

.popular-date {
    font-size: 0.8rem;
    color: #999;
}

/* Newsletter */
.newsletter-widget {
    background: linear-gradient(135deg, #d4527c, #e57fa0);
    color: white;
    text-align: center;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    margin-bottom: 1rem;
    outline: none;
}

.newsletter-form button {
    width: 100%;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.75rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255,255,255,0.3);
}

/* Affiliate Product Cards */
.affiliate-products {
    margin: 2rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #e8e8e8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fafafa, #ffffff);
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.product-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
}

.product-price {
    color: #d4527c;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Categories */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: #4a7c59;
}

.post-count {
    background: #f0f4f1;
    color: #4a7c59;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

footer a {
    color: #8bc34a;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6b9b7f;
}

/* Contact Form Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4a7c59, #6b9b7f);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #6b9b7f, #8bc34a);
}

.success-message {
    background: linear-gradient(135deg, #4a7c59, #6b9b7f);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.error-message {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.submit-btn {
    background: linear-gradient(135deg, #4a7c59, #6b9b7f);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74,124,89,0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    background: #ccc;
    cursor: not-allowed;
    position: relative;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8faf8;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
}

.breadcrumbs a {
    color: #4a7c59;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 6px;
    border-radius: 4px;
    position: relative;
}

.breadcrumbs a:hover {
    color: #2d5a3d;
    background-color: rgba(74,124,89,0.1);
    text-decoration: underline;
}

.breadcrumbs a:focus {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
}

.breadcrumbs > span {
    color: #666;
    font-weight: 500;
}

.breadcrumbs > * {
    margin-right: 8px;
}

.breadcrumbs > *:last-child {
    margin-right: 0;
}

/* Separator styling */
.breadcrumbs > :not(:last-child):after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid #4a7c59;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 8px;
    vertical-align: middle;
    opacity: 0.6;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    border: 1px solid #e8e8e8;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover {
    background: #f8faf8;
    border-color: #d0d0d0;
    color: #4a7c59;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #4a7c59, #6b9b7f);
    color: white;
    border-color: #4a7c59;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn.prev,
.pagination-btn.next {
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.pagination-ellipsis {
    padding: 0.5rem;
    color: #ccc;
    font-weight: bold;
}

/* Utility Classes */
.no-before::before {
    content: none !important;
    display: none !important;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
        gap: 2rem;
    }

    .article-body {
        padding: 1rem 0.5rem;
    }

    .header nav {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .pagination {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }
    
    .pagination-btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .pagination-btn.prev,
    .pagination-btn.next {
        padding: 0.5rem 0.75rem;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes spin {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg); 
    }
}

.article-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Additional Garden-Specific Styles */
.beauty-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.ingredient-list {
    background: #f8faf8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
    margin: 1rem 0;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59, #6b9b7f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.skin-type-badge {
    display: inline-block;
    background: #f0f4f1;
    color: #4a7c59;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.25rem;
}

.product-highlight {
    background: #f8faf8;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    margin: 1.5rem 0;
}

.product-highlight h4 {
    color: #4a7c59;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Special promotional banner */
.promo-banner {
    background: linear-gradient(135deg, #4a7c59, #6b9b7f);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74,124,89,0.3);
}

/* Bottom Article CTA */
.article-bottom-cta {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fffafc 100%);
    border: 2px solid #ffe8ec;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0 2rem;
    box-shadow: 0 4px 20px rgba(255,192,203,0.12);
    position: relative;
    overflow: hidden;
}

.article-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #ffa3c1, #ffccd9);
}

.cta-image {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(255,192,203,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-title {
    font-size: 1.6rem;
    color: #2d2d2d;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-price {
    font-size: 2rem;
    color: #ff6b9d;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa3c1 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 2px 8px rgba(255,107,157,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff5b8d 0%, #ff93b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,157,0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .article-bottom-cta {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cta-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cta-price {
        text-align: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #d4527c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #ffffff;
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #2d2d2d;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #d4527c;
        padding-left: 0.5rem;
    }
    
    /* Hamburger animation when active */
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    nav {
        padding: 0 1rem;
    }
}