section {
    padding: 0;
}

/* Main Container */

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 70px;
}

/* Blog Content */
.blog-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-title {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #E0A75E;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Article Cards */
.articles-grid {
    display: grid;
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-date {
    color: #E0A75E;
    font-size: 14px;
    font-weight: 600;
}

.article-category {
    background: #E0A75E;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-title {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}


/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.sidebar-title {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #E0A75E;
    padding-bottom: 10px;
}

/* Products Section */
.product-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #E0A75E;
    background: white;
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    color: #E0A75E;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.buy-btn {
    background: linear-gradient(135deg, #E0A75E, #d4964d);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #d4964d, #c8894a);
    transform: translateY(-2px);
}

.buy-btn::before {
    content: '📞';
    font-size: 16px;
}

/* Categories */
.category-list {
    list-style: none;
}

.category-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.category-link:hover {
    color: #E0A75E;
    padding-left: 10px;
}

/* Search Box */
.search-box {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box:focus {
    border-color: #E0A75E;
    box-shadow: 0 0 10px rgba(224, 167, 94, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px 15px;
    }

    .blog-content,
    .sidebar-section {
        padding: 25px;
    }

    .page-title {
        font-size: 28px;
    }

    .article-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 20px;
    }
}

/* Hide/Show sections */
.hidden {
    display: none;
}