/* Hide original category descriptions */
.woocommerce-archive-description,
.archive-description, 
.taxonomy-description,
.page-description,
.term-description,
.category-description,
.product-category-description,
.woocommerce-category-description {
    display: none !important;
}

/* Scrollable content box - matches category page width */
.category-content-moved {
    /* Matches typical content container width */
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    
    /* Scrollable fixed height */
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Custom scrollbar */
.category-content-moved::-webkit-scrollbar {
    width: 8px;
}

.category-content-moved::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.category-content-moved::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.category-content-moved::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Content styling */
.category-content-moved h1,
.category-content-moved h2,
.category-content-moved h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2em;
}

.category-content-moved p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.category-content-moved p:last-child {
    margin-bottom: 0;
}

.category-content-moved ul,
.category-content-moved ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.category-content-moved li {
    margin-bottom: 5px;
    line-height: 1.6;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .category-content-moved {
        margin: 30px 15px 20px;
        padding: 20px 15px;
        height: 250px;
        max-width: calc(100% - 30px); /* Account for margins */
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1200px) {
    .category-content-moved {
        max-width: 90%;
    }
} 